diff --git a/doc/default.nix b/doc/default.nix
index ddbee65f1ac..a9f22267584 100644
--- a/doc/default.nix
+++ b/doc/default.nix
@@ -52,9 +52,8 @@ stdenv.mkDerivation {
outputFile = "./languages-frameworks/python.xml";
}
+ toDocbook {
- inputFile = ./haskell-users-guide.md;
- outputFile = "haskell-users-guide.xml";
- useChapters = true;
+ inputFile = ./languages-frameworks/haskell.md;
+ outputFile = "./languages-frameworks/haskell.xml";
}
+ toDocbook {
inputFile = ./../pkgs/development/idris-modules/README.md;
diff --git a/doc/beam-users-guide.xml b/doc/languages-frameworks/beam.xml
similarity index 98%
rename from doc/beam-users-guide.xml
rename to doc/languages-frameworks/beam.xml
index c1a4c90bc27..2dc5aa63e45 100644
--- a/doc/beam-users-guide.xml
+++ b/doc/languages-frameworks/beam.xml
@@ -1,10 +1,10 @@
-
+ xml:id="sec-beam">
- User's Guide to the Beam Infrastructure
+ Beam Languages (Erlang & Elixir)
- Beam Languages (Erlang & Elixir) on Nix
+ Introduction
In this document and related Nix expressions we use the term
Beam to describe the environment. Beam is
@@ -373,4 +373,4 @@ $ nix-build -A beamPackages
that.
-
+
diff --git a/doc/haskell-users-guide.md b/doc/languages-frameworks/haskell.md
similarity index 100%
rename from doc/haskell-users-guide.md
rename to doc/languages-frameworks/haskell.md
diff --git a/doc/languages-frameworks/index.xml b/doc/languages-frameworks/index.xml
index 395d4688021..8076c33f1b3 100644
--- a/doc/languages-frameworks/index.xml
+++ b/doc/languages-frameworks/index.xml
@@ -13,19 +13,20 @@ in Nixpkgs to easily build packages for other programming languages,
such as Perl or Haskell. These are described in this chapter.
-
-
-
+
+
+
+
+
-
-
-
+
+
+
+
-
-
diff --git a/doc/manual.xml b/doc/manual.xml
index 1045d0d4f81..32e94e8e59c 100644
--- a/doc/manual.xml
+++ b/doc/manual.xml
@@ -20,8 +20,6 @@
-
-
diff --git a/lib/maintainers.nix b/lib/maintainers.nix
index b98a0ab76c7..544caabf8e4 100644
--- a/lib/maintainers.nix
+++ b/lib/maintainers.nix
@@ -86,7 +86,7 @@
couchemar = "Andrey Pavlov ";
cransom = "Casey Ransom ";
CrystalGamma = "Jona Stubbe ";
- cstrahan = "Charles Strahan ";
+ cstrahan = "Charles Strahan ";
cwoac = "Oliver Matthews ";
DamienCassou = "Damien Cassou ";
dasuxullebt = "Christoph-Simon Senjak ";
@@ -260,6 +260,7 @@
nfjinjing = "Jinjing Wang ";
nico202 = "Nicolò Balzarotti ";
notthemessiah = "Brian Cohen ";
+ NikolaMandic = "Ratko Mladic ";
np = "Nicolas Pouillard ";
nslqqq = "Nikita Mikhailov ";
obadz = "obadz ";
diff --git a/nixos/doc/manual/configuration/linux-kernel.xml b/nixos/doc/manual/configuration/linux-kernel.xml
index ffd7b354efe..b008baaa66c 100644
--- a/nixos/doc/manual/configuration/linux-kernel.xml
+++ b/nixos/doc/manual/configuration/linux-kernel.xml
@@ -19,7 +19,7 @@ kernel.
The default Linux kernel configuration should be fine for most users. You can see the configuration of your current kernel with the following command:
-cat /proc/config.gz | gunzip
+zcat /proc/config.gz
If you want to change the kernel configuration, you can use the
feature (see sysctl -a.
+
+ Developing kernel modules
+
+ When developing kernel modules it's often convenient to run
+ edit-compile-run loop as quickly as possible.
+
+ See below snippet as an example of developing mellanox
+ drivers.
+
+
+ ' -A linuxPackages.kernel.dev
+$ nix-shell '' -A linuxPackages.kernel
+$ unpackPhase
+$ cd linux-*
+$ make -C $dev/lib/modules/*/build M=$(pwd)/drivers/net/ethernet/mellanox modules
+$ sudo insmod ./drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.ko
+]]>
+
+
+
diff --git a/nixos/doc/manual/development/option-declarations.xml b/nixos/doc/manual/development/option-declarations.xml
index ea5d1241876..b0689aa1d97 100644
--- a/nixos/doc/manual/development/option-declarations.xml
+++ b/nixos/doc/manual/development/option-declarations.xml
@@ -7,8 +7,8 @@
Option Declarations
An option declaration specifies the name, type and description
-of a NixOS configuration option. It is illegal to define an option
-that hasn’t been declared in any module. A option declaration
+of a NixOS configuration option. It is invalid to define an option
+that hasn’t been declared in any module. An option declaration
generally looks like this:
@@ -42,7 +42,7 @@ options = {
The default value used if no value is defined by any
module. A default is not required; in that case, if the option
- value is ever used, an error will be thrown.
+ value is never used, an error will be thrown.
diff --git a/nixos/doc/manual/release-notes/rl-1603.xml b/nixos/doc/manual/release-notes/rl-1603.xml
index 620c3e362a6..c51316bd280 100644
--- a/nixos/doc/manual/release-notes/rl-1603.xml
+++ b/nixos/doc/manual/release-notes/rl-1603.xml
@@ -279,7 +279,7 @@ fileSystems."/example" = {
services.xserver.vaapiDrivers has been removed. Use
- services.hardware.opengl.extraPackages{,32} instead. You can
+ hardware.opengl.extraPackages{,32} instead. You can
also specify VDPAU drivers there.
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index bd6552f74a4..370220d253a 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -62,7 +62,8 @@
./programs/bash/bash.nix
./programs/blcr.nix
./programs/cdemu.nix
- ./programs/command-not-found/command-not-found.nix
+ # see https://github.com/NixOS/nixos-channel-scripts/issues/4
+ #./programs/command-not-found/command-not-found.nix
./programs/dconf.nix
./programs/environment.nix
./programs/freetds.nix
diff --git a/nixos/modules/services/databases/redis.nix b/nixos/modules/services/databases/redis.nix
index 6323d2c8ce4..480e1184ffa 100644
--- a/nixos/modules/services/databases/redis.nix
+++ b/nixos/modules/services/databases/redis.nix
@@ -68,6 +68,22 @@ in
description = "The port for Redis to listen to.";
};
+ vmOverCommit = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Set vm.overcommit_memory to 1 (Suggested for Background Saving: http://redis.io/topics/faq)
+ '';
+ };
+
+ openFirewall = mkOption {
+ type = types.bool;
+ default = false;
+ description = ''
+ Whether to open ports in the firewall for the server.
+ '';
+ };
+
bind = mkOption {
type = with types; nullOr str;
default = null; # All interfaces
@@ -193,6 +209,14 @@ in
config = mkIf config.services.redis.enable {
+ boot.kernel.sysctl = mkIf cfg.vmOverCommit {
+ "vm.overcommit_memory" = "1";
+ };
+
+ networking.firewall = mkIf cfg.openFirewall {
+ allowedTCPPorts = [ cfg.port ];
+ };
+
users.extraUsers.redis =
{ name = cfg.user;
uid = config.ids.uids.redis;
diff --git a/nixos/modules/services/desktops/gnome3/gnome-keyring.nix b/nixos/modules/services/desktops/gnome3/gnome-keyring.nix
index a8f1bcc28fb..a36643a1cfb 100644
--- a/nixos/modules/services/desktops/gnome3/gnome-keyring.nix
+++ b/nixos/modules/services/desktops/gnome3/gnome-keyring.nix
@@ -36,7 +36,7 @@ in
environment.systemPackages = [ gnome3.gnome_keyring ];
- services.dbus.packages = [ gnome3.gnome_keyring ];
+ services.dbus.packages = [ gnome3.gnome_keyring gnome3.gcr ];
};
diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix
index e9eea6a2cae..9912ad9ae3f 100644
--- a/nixos/modules/services/networking/networkmanager.nix
+++ b/nixos/modules/services/networking/networkmanager.nix
@@ -114,12 +114,10 @@ in {
# Ugly hack for using the correct gnome3 packageSet
basePackages = mkOption {
type = types.attrsOf types.package;
- default = { inherit modemmanager wpa_supplicant
+ default = { inherit networkmanager modemmanager wpa_supplicant
networkmanager_openvpn networkmanager_vpnc
networkmanager_openconnect
- networkmanager_pptp networkmanager_l2tp;
- networkmanager = networkmanager.out;
- };
+ networkmanager_pptp networkmanager_l2tp; };
internal = true;
};
@@ -189,7 +187,7 @@ in {
boot.kernelModules = [ "ppp_mppe" ]; # Needed for most (all?) PPTP VPN connections.
- environment.etc = with mapAttrs (name: getBin) cfg.basePackages; [
+ environment.etc = with cfg.basePackages; [
{ source = ipUpScript;
target = "NetworkManager/dispatcher.d/01nixos-ip-up";
}
diff --git a/nixos/modules/services/networking/unbound.nix b/nixos/modules/services/networking/unbound.nix
index 89762fe5248..0dd24478f40 100644
--- a/nixos/modules/services/networking/unbound.nix
+++ b/nixos/modules/services/networking/unbound.nix
@@ -106,8 +106,10 @@ in
preStart = ''
mkdir -m 0755 -p ${stateDir}/dev/
cp ${confFile} ${stateDir}/unbound.conf
+ ${optionalString cfg.enableRootTrustAnchor ''
${pkgs.unbound}/bin/unbound-anchor -a ${rootTrustAnchorFile}
chown unbound ${stateDir} ${rootTrustAnchorFile}
+ ''}
touch ${stateDir}/dev/random
${pkgs.utillinux}/bin/mount --bind -n /dev/random ${stateDir}/dev/random
'';
diff --git a/nixos/modules/services/torrent/transmission.nix b/nixos/modules/services/torrent/transmission.nix
index 32203a522b0..5154aaca3bc 100644
--- a/nixos/modules/services/torrent/transmission.nix
+++ b/nixos/modules/services/torrent/transmission.nix
@@ -113,22 +113,22 @@ in
#include
#include
- ${pkgs.glibc.out}/lib/*.so mr,
- ${pkgs.libevent.out}/lib/libevent*.so* mr,
- ${pkgs.curl.out}/lib/libcurl*.so* mr,
- ${pkgs.openssl.out}/lib/libssl*.so* mr,
- ${pkgs.openssl.out}/lib/libcrypto*.so* mr,
- ${pkgs.zlib.out}/lib/libz*.so* mr,
- ${pkgs.libssh2.out}/lib/libssh2*.so* mr,
- ${pkgs.systemd}/lib/libsystemd*.so* mr,
- ${pkgs.xz.out}/lib/liblzma*.so* mr,
- ${pkgs.libgcrypt.out}/lib/libgcrypt*.so* mr,
- ${pkgs.libgpgerror.out}/lib/libgpg-error*.so* mr,
- ${pkgs.nghttp2.lib}/lib/libnghttp2*.so* mr,
- ${pkgs.c-ares.out}/lib/libcares*.so* mr,
- ${pkgs.libcap.lib}/lib/libcap*.so* mr,
- ${pkgs.attr.out}/lib/libattr*.so* mr,
- ${pkgs.lz4}/lib/liblz4*.so* mr,
+ ${getLib pkgs.glibc}/lib/*.so mr,
+ ${getLib pkgs.libevent}/lib/libevent*.so* mr,
+ ${getLib pkgs.curl}/lib/libcurl*.so* mr,
+ ${getLib pkgs.openssl}/lib/libssl*.so* mr,
+ ${getLib pkgs.openssl}/lib/libcrypto*.so* mr,
+ ${getLib pkgs.zlib}/lib/libz*.so* mr,
+ ${getLib pkgs.libssh2}/lib/libssh2*.so* mr,
+ ${getLib pkgs.systemd}/lib/libsystemd*.so* mr,
+ ${getLib pkgs.xz}/lib/liblzma*.so* mr,
+ ${getLib pkgs.libgcrypt}/lib/libgcrypt*.so* mr,
+ ${getLib pkgs.libgpgerror}/lib/libgpg-error*.so* mr,
+ ${getLib pkgs.nghttp2}/lib/libnghttp2*.so* mr,
+ ${getLib pkgs.c-ares}/lib/libcares*.so* mr,
+ ${getLib pkgs.libcap}/lib/libcap*.so* mr,
+ ${getLib pkgs.attr}/lib/libattr*.so* mr,
+ ${getLib pkgs.lz4}/lib/liblz4*.so* mr,
@{PROC}/sys/kernel/random/uuid r,
@{PROC}/sys/vm/overcommit_memory r,
diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix
index 9cb9c8de31d..4f65ed72d36 100644
--- a/nixos/modules/services/x11/xserver.nix
+++ b/nixos/modules/services/x11/xserver.nix
@@ -16,6 +16,7 @@ let
virtualbox = { modules = [ kernelPackages.virtualboxGuestAdditions ]; driverName = "vboxvideo"; };
ati = { modules = with pkgs.xorg; [ xf86videoati glamoregl ]; };
intel = { modules = with pkgs.xorg; [ xf86videointel glamoregl ]; };
+ modesetting = { modules = []; };
};
fontsForXServer =
diff --git a/nixos/modules/system/boot/initrd-ssh.nix b/nixos/modules/system/boot/initrd-ssh.nix
index a881459bed1..3e2805a8c34 100644
--- a/nixos/modules/system/boot/initrd-ssh.nix
+++ b/nixos/modules/system/boot/initrd-ssh.nix
@@ -85,6 +85,10 @@ in
};
config = mkIf (config.boot.initrd.network.enable && cfg.enable) {
+ assertions = [ {
+ assertion = cfg.hostRSAKey != null || cfg.hostDSSKey != null || cfg.hostECDSAKey != null;
+ message = "You should specify at least one host key for initrd SSH";
+ } ];
boot.initrd.extraUtilsCommands = ''
copy_bin_and_libs ${pkgs.dropbear}/bin/dropbear
diff --git a/pkgs/applications/audio/audacious/default.nix b/pkgs/applications/audio/audacious/default.nix
index 4046d839f7d..193b9c1e790 100644
--- a/pkgs/applications/audio/audacious/default.nix
+++ b/pkgs/applications/audio/audacious/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, pkgconfig, glib, gtk3, libmowgli, libmcs
, gettext, dbus_glib, libxml2, libmad, xorg, alsaLib, libogg
, libvorbis, libcdio, libcddb, flac, ffmpeg, makeWrapper
-, mpg123, neon, faad2
+, mpg123, neon, faad2, gnome3
}:
let version = "3.5.2"; in
@@ -22,7 +22,7 @@ stdenv.mkDerivation {
buildInputs =
[ gettext pkgconfig glib gtk3 libmowgli libmcs libxml2 dbus_glib
libmad xorg.libXcomposite libogg libvorbis flac alsaLib libcdio
- libcddb ffmpeg makeWrapper mpg123 neon faad2
+ libcddb ffmpeg makeWrapper mpg123 neon faad2 gnome3.defaultIconTheme
];
# Here we build bouth audacious and audacious-plugins in one
@@ -48,8 +48,11 @@ stdenv.mkDerivation {
(
source $stdenv/setup
# gsettings schemas for file dialogues
+ # XDG_ICON_DIRS is set by hook for gnome3.defaultIconTheme
for file in "$out/bin/"*; do
- wrapProgram "$file" --prefix XDG_DATA_DIRS : "$XDG_ADD:$GSETTINGS_SCHEMAS_PATH"
+ wrapProgram "$file" \
+ --prefix XDG_DATA_DIRS : "$XDG_ADD:$GSETTINGS_SCHEMAS_PATH" \
+ --suffix XDG_DATA_DIRS : "$XDG_ICON_DIRS"
done
)
'';
diff --git a/pkgs/applications/audio/QmidiNet/default.nix b/pkgs/applications/audio/qmidinet/default.nix
similarity index 100%
rename from pkgs/applications/audio/QmidiNet/default.nix
rename to pkgs/applications/audio/qmidinet/default.nix
diff --git a/pkgs/applications/audio/qmmp/default.nix b/pkgs/applications/audio/qmmp/default.nix
index 5bec7aa6dd0..d0d37fb15a1 100644
--- a/pkgs/applications/audio/qmmp/default.nix
+++ b/pkgs/applications/audio/qmmp/default.nix
@@ -28,11 +28,11 @@
# handle that.
stdenv.mkDerivation rec {
- name = "qmmp-0.8.4";
+ name = "qmmp-0.9.9";
src = fetchurl {
url = "http://qmmp.ylsoftware.com/files/${name}.tar.bz2";
- sha256 = "1ld69xypyak3lzwmfvzbxsyd4fl841aaq0gmkfa7jpavbdlggydf";
+ sha256 = "1wv4kbjq50xflhrl1jjf1hm3rrw599xkd72dwm4rscm0sdvzhnc1";
};
buildInputs =
diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix
index 5ac7a69aeda..0eba31375dc 100644
--- a/pkgs/applications/editors/neovim/default.nix
+++ b/pkgs/applications/editors/neovim/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, cmake, gettext, glib, libmsgpack, libtermkey
-, libtool, libuv, lpeg, lua, luajit, luaMessagePack, luabitop, ncurses, perl
-, pkgconfig, unibilium, makeWrapper, vimUtils
+, libtool, libuv, lpeg, lua, luajit, luaMessagePack, luabitop, man, ncurses
+, perl, pkgconfig, unibilium, makeWrapper, vimUtils
, withPython ? true, pythonPackages, extraPythonPackages ? []
, withPython3 ? true, python3Packages, extraPython3Packages ? []
@@ -98,7 +98,10 @@ let
LUA_CPATH="${lpeg}/lib/lua/${lua.luaversion}/?.so;${luabitop}/lib/lua/5.2/?.so";
LUA_PATH="${luaMessagePack}/share/lua/5.1/?.lua";
- preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
+ preConfigure = ''
+ substituteInPlace runtime/autoload/man.vim \
+ --replace /usr/bin/man ${man}/bin/man
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
export DYLD_LIBRARY_PATH=${jemalloc}/lib
substituteInPlace src/nvim/CMakeLists.txt --replace " util" ""
'';
diff --git a/pkgs/applications/graphics/pbrt/default.nix b/pkgs/applications/graphics/pbrt/default.nix
new file mode 100644
index 00000000000..5bf6907744a
--- /dev/null
+++ b/pkgs/applications/graphics/pbrt/default.nix
@@ -0,0 +1,25 @@
+{stdenv, fetchgit, flex, bison, cmake, git, zlib}:
+
+stdenv.mkDerivation rec {
+
+ version = "2016-05-19";
+ name = "pbrt-v3-${version}";
+ src = fetchgit {
+ url = "https://github.com/mmp/pbrt-v3.git";
+ rev = "638249e5cf4596e129695c8df8525d43f11573ff";
+ sha256 = "10ykqrg4zcfb4sfsg3z793c6vld6b6g8bzfyk7ya3yvvc9sdlr5g";
+ };
+
+ fetchSubmodules = true;
+
+ buildInputs = [ git flex bison cmake zlib ];
+
+ meta = {
+ homepage = "http://pbrt.org";
+ description = "The renderer described in the third edition of the book 'Physically Based Rendering: From Theory To Implementation'";
+ platforms = stdenv.lib.platforms.linux ;
+ license = stdenv.lib.licenses.bsd3;
+ maintainers = [ stdenv.lib.maintainers.juliendehos ];
+ priority = 10;
+ };
+}
diff --git a/pkgs/applications/misc/evtest/default.nix b/pkgs/applications/misc/evtest/default.nix
index 330970b498b..10605b8b18d 100644
--- a/pkgs/applications/misc/evtest/default.nix
+++ b/pkgs/applications/misc/evtest/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchgit, autoreconfHook, automake, pkgconfig, libxml2 }:
stdenv.mkDerivation rec {
- name = "evtest-1.32";
+ name = "evtest-1.33";
buildInputs = [ autoreconfHook pkgconfig libxml2 ];
src = fetchgit {
url = "git://anongit.freedesktop.org/evtest";
- rev = "refs/tags/evtest-1.32";
- sha256 = "150lb7d2gnkcqgfw1hcnb8lcvdb52fpig9j9qxjizp6irhlw2a31";
+ rev = "refs/tags/evtest-1.33";
+ sha256 = "168gdhzj11f4nk94a6z696sm8v1njzwww69bn6wr97l17897913g";
};
meta = with stdenv.lib; {
diff --git a/pkgs/applications/misc/librecad/default.nix b/pkgs/applications/misc/librecad/default.nix
index d5c04ba555a..3161af33ead 100644
--- a/pkgs/applications/misc/librecad/default.nix
+++ b/pkgs/applications/misc/librecad/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchurl, qt4, qmake4Hook, muparser, which, boost, pkgconfig }:
stdenv.mkDerivation rec {
- version = "2.0.9";
+ version = "2.0.10";
name = "librecad-${version}";
src = fetchurl {
url = "https://github.com/LibreCAD/LibreCAD/tarball/${version}";
name = name + ".tar.gz";
- sha256 = "0npr2nxwmx1qil7lqhkh6yvkw7dwym0nfashxjglxspjallqjya7";
+ sha256 = "13jr0zkirnnpkbx8ysh7j6sh2psxi1dg7ncfjqzyxrcr2b270rcj";
};
patchPhase = ''
diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix
index 7895a3b252d..fede69ff574 100644
--- a/pkgs/applications/networking/dropbox/default.nix
+++ b/pkgs/applications/networking/dropbox/default.nix
@@ -20,11 +20,11 @@
let
# NOTE: When updating, please also update in current stable, as older versions stop working
- version = "3.18.1";
+ version = "3.20.1";
sha256 =
{
- "x86_64-linux" = "1qdahr8xzk3zrrv89335l3aa2gfgjn1ymfixj9zgipv34grkjghm";
- "i686-linux" = "015bjkr2dwyac410i398qm1v60rqln539wcj5f25q776haycbcji";
+ "x86_64-linux" = "170xnrxlsadl5iw96276f8l3w687l6n5j5m8z4djsfqqr3lqjxvg";
+ "i686-linux" = "0a7k56ib2qp5560wmbk7b30pqf7h9h7rjnq850993gn9lfwz81q2";
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
arch =
diff --git a/pkgs/applications/networking/ids/daq/default.nix b/pkgs/applications/networking/ids/daq/default.nix
index e0c40280bce..9f11290fdb1 100644
--- a/pkgs/applications/networking/ids/daq/default.nix
+++ b/pkgs/applications/networking/ids/daq/default.nix
@@ -1,12 +1,12 @@
{stdenv, fetchurl, flex, bison, libpcap, libdnet, libnfnetlink, libnetfilter_queue}:
stdenv.mkDerivation rec {
- name = "daq-2.0.5";
+ name = "daq-2.0.6";
src = fetchurl {
name = "${name}.tar.gz";
- url = "mirror://sourceforge/snort/${name}.tar.gz";
- sha256 = "0vdwb0r9kdlgj4g0i0swafbc7qik0zmks17mhqji8cl7hpdva13p";
+ url = "https://snort.org/downloads/archive/snort/${name}.tar.gz";
+ sha256 = "1jz7gc9n6sr677ssv61qvcxybdrmsll4z7g6hsmax2p0fc91s3ml";
};
buildInputs = [ flex bison libpcap libdnet libnfnetlink libnetfilter_queue];
diff --git a/pkgs/applications/networking/ids/snort/default.nix b/pkgs/applications/networking/ids/snort/default.nix
index a55b80df2b2..2904f50d6fc 100644
--- a/pkgs/applications/networking/ids/snort/default.nix
+++ b/pkgs/applications/networking/ids/snort/default.nix
@@ -1,13 +1,13 @@
{stdenv, fetchurl, libpcap, pcre, libdnet, daq, zlib, flex, bison, makeWrapper}:
stdenv.mkDerivation rec {
- version = "2.9.7.2";
+ version = "2.9.8.2";
name = "snort-${version}";
src = fetchurl {
name = "${name}.tar.gz";
- url = "mirror://sourceforge/snort/${name}.tar.gz";
- sha256 = "1gmlrh9ygpd5h6nnrr4090wk5n2yq2yrvwi7q6xbm6lxj4rcamyv";
+ url = "https://snort.org/downloads/archive/snort/${name}.tar.gz";
+ sha256 = "0cwk02jan0vw6r3jl3vrf31vfp7i4c1r4yhb42h4gyhd6lnh2xa0";
};
buildInputs = [ makeWrapper libpcap pcre libdnet daq zlib flex bison ];
diff --git a/pkgs/applications/networking/instant-messengers/discord/default.nix b/pkgs/applications/networking/instant-messengers/discord/default.nix
index 0d6e6d40284..71382558d3c 100644
--- a/pkgs/applications/networking/instant-messengers/discord/default.nix
+++ b/pkgs/applications/networking/instant-messengers/discord/default.nix
@@ -2,9 +2,9 @@
, alsaLib, atk, cairo, cups, dbus, expat, fontconfig, freetype, gdk_pixbuf
, glib, gnome, gtk, libnotify, libX11, libXcomposite, libXcursor, libXdamage
, libXext, libXfixes, libXi, libXrandr, libXrender, libXtst, nspr, nss, pango
-, libudev }:
+, libudev, libXScrnSaver }:
-let version = "0.0.3"; in
+let version = "0.0.8"; in
stdenv.mkDerivation {
@@ -12,14 +12,14 @@ stdenv.mkDerivation {
src = fetchurl {
url = "https://cdn-canary.discordapp.com/apps/linux/${version}/discord-canary-${version}.tar.gz";
- sha256 = "1k1mnfkcx7183qbdc4qx1anngddqim969cribg9gzc7mixvj17ca";
+ sha256 = "1g48jxiswpfvbgjs4dyywmzj9kncvrgpajhixk3acizdmfmsyqkk";
};
libPath = stdenv.lib.makeLibraryPath [
stdenv.cc.cc alsaLib atk cairo cups dbus expat fontconfig freetype
gdk_pixbuf glib gnome.GConf gtk libnotify libX11 libXcomposite
libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender
- libXtst nspr nss pango libudev.out
+ libXtst nspr nss pango libudev.out libXScrnSaver
];
installPhase = ''
diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
index a87f89fc964..78e1b2bb62b 100644
--- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
@@ -1,7 +1,7 @@
{ stdenv, lib, fetchFromGitHub, fetchgit, qtbase, qtimageformats
, breakpad, ffmpeg, openalSoft, openssl, zlib, libexif, lzma, libopus
, gtk2, glib, cairo, pango, gdk_pixbuf, atk, libappindicator-gtk2
-, libunity, dee, libdbusmenu-glib, libva, qmakeHook
+, libwebp, libunity, dee, libdbusmenu-glib, libva
, pkgconfig, libxcb, xcbutilwm, xcbutilimage, xcbutilkeysyms
, libxkbcommon, libpng, libjpeg, freetype, harfbuzz, pcre16
@@ -12,14 +12,14 @@ let
system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64;
in stdenv.mkDerivation rec {
name = "telegram-desktop-${version}";
- version = "0.9.44";
+ version = "0.9.48";
qtVersion = lib.replaceStrings ["."] ["_"] qtbase.version;
src = fetchFromGitHub {
owner = "telegramdesktop";
repo = "tdesktop";
rev = "v${version}";
- sha256 = "0ydd5yhy2nq4n6x59ajb6c4d0blyj6gm7hkx4hfrx2a88iksc5rm";
+ sha256 = "1i1f7a9mikq8n08cnwcyywxj7sh1jc6yfj0zd3n7fgfhl0srzvlb";
};
tgaur = fetchgit {
@@ -31,11 +31,11 @@ in stdenv.mkDerivation rec {
buildInputs = [
breakpad ffmpeg openalSoft openssl zlib libexif lzma libopus
gtk2 glib libappindicator-gtk2 libunity cairo pango gdk_pixbuf atk
- dee libdbusmenu-glib libva qtbase qmakeHook
+ dee libdbusmenu-glib libva
# Qt dependencies
libxcb xcbutilwm xcbutilimage xcbutilkeysyms libxkbcommon
libpng libjpeg freetype harfbuzz pcre16 xproto libX11
- inputproto sqlite dbus
+ inputproto sqlite dbus libwebp
];
nativeBuildInputs = [ pkgconfig ];
@@ -61,44 +61,27 @@ in stdenv.mkDerivation rec {
"INCLUDEPATH+=${breakpad}/include/breakpad"
"LIBS+=-lcrypto"
"LIBS+=-lssl"
- "LIBS+=-lz"
- "LIBS+=-lgobject-2.0"
- "LIBS+=-lxkbcommon"
- "LIBS+=-lX11"
- "LIBS+=${breakpad}/lib/libbreakpad_client.a"
- "LIBS+=./../../../Libraries/QtStatic/qtbase/plugins/platforms/libqxcb.a"
- "LIBS+=./../../../Libraries/QtStatic/qtimageformats/plugins/imageformats/libqwebp.a"
];
qtSrcs = qtbase.srcs ++ [ qtimageformats.src ];
qtPatches = qtbase.patches;
- dontUseQmakeConfigure = true;
-
buildCommand = ''
unpackPhase
cd "$sourceRoot"
+
patchPhase
sed -i 'Telegram/Telegram.pro' \
- -e 's/CUSTOM_API_ID//g' \
+ -e 's,CUSTOM_API_ID,,g' \
+ -e "s,/usr/local/tdesktop/Qt-[^/]*,$PWD/../qt,g" \
-e 's,/usr,/does-not-exist,g' \
-e '/LIBS += .*libxkbcommon.a/d' \
- -e '/LIBS += .*libz.a/d' \
- -e '/LIBS += .*libbreakpad_client.a/d' \
- -e 's,-flto ,,g'
- echo "Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)" >> Telegram/SourceFiles/stdafx.cpp
-
- ( mkdir -p Linux/DebugIntermediateStyle
- cd Linux/DebugIntermediateStyle
- qmake CONFIG+=debug ../../Telegram/MetaStyle.pro
- buildPhase
- )
- ( mkdir -p Linux/DebugIntermediateLang
- cd Linux/DebugIntermediateLang
- qmake CONFIG+=debug ../../Telegram/MetaLang.pro
- buildPhase
- )
+ -e 's,LIBS += .*libz.a,LIBS += -lz,' \
+ -e 's,LIBS += .*libbreakpad_client.a,LIBS += ${breakpad}/lib/libbreakpad_client.a,' \
+ -e 's, -flto,,g' \
+ -e 's, -static-libstdc++,,g'
+ export QMAKE=$PWD/../qt/bin/qmake
( mkdir -p ../Libraries
cd ../Libraries
for i in $qtSrcs; do
@@ -108,37 +91,56 @@ in stdenv.mkDerivation rec {
mv qtbase-opensource-src-* ./QtStatic/qtbase
mv qtimageformats-opensource-src-* ./QtStatic/qtimageformats
cd QtStatic/qtbase
- patch -p1 < ../../../$sourceRoot/Telegram/_qtbase_${qtVersion}_patch.diff
+ patch -p1 < ../../../$sourceRoot/Telegram/Patches/qtbase_${qtVersion}.diff
cd ..
for i in $qtPatches; do
patch -p1 < $i
done
${qtbase.postPatch}
- export configureFlags="-prefix "../../qt" -release -opensource -confirm-license -system-zlib \
+ export configureFlags="-prefix "$PWD/../../qt" -release -opensource -confirm-license -system-zlib \
-system-libpng -system-libjpeg -system-freetype -system-harfbuzz -system-pcre -system-xcb \
-system-xkbcommon-x11 -no-opengl -static -nomake examples -nomake tests \
-openssl-linked -dbus-linked -system-sqlite -verbose \
${lib.optionalString (!system-x86_64) "-no-sse2"} -no-sse3 -no-ssse3 \
-no-sse4.1 -no-sse4.2 -no-avx -no-avx2 -no-mips_dsp -no-mips_dspr2"
export dontAddPrefix=1
- export buildFlags="module-qtbase module-qtimageformats"
- export installFlags="module-qtbase-install_subtargets module-qtimageformats-install_subtargets"
+ export MAKEFLAGS=-j$NIX_BUILD_CORES
- ( export MAKEFLAGS=-j$NIX_BUILD_CORES
+ ( cd qtbase
configurePhase
+ buildPhase
+ make install
)
+
+ ( cd qtimageformats
+ $QMAKE
+ buildPhase
+ make install
+ )
+ )
+
+ ( mkdir -p Linux/obj/codegen_style/Debug
+ cd Linux/obj/codegen_style/Debug
+ $QMAKE CONFIG+=debug ../../../../Telegram/build/qmake/codegen_style/codegen_style.pro
+ buildPhase
+ )
+ ( mkdir -p Linux/obj/codegen_numbers/Debug
+ cd Linux/obj/codegen_numbers/Debug
+ $QMAKE CONFIG+=debug ../../../../Telegram/build/qmake/codegen_numbers/codegen_numbers.pro
+ buildPhase
+ )
+ ( mkdir -p Linux/DebugIntermediateLang
+ cd Linux/DebugIntermediateLang
+ $QMAKE CONFIG+=debug ../../Telegram/MetaLang.pro
buildPhase
- installPhase
)
( mkdir -p Linux/ReleaseIntermediate
cd Linux/ReleaseIntermediate
- qmake $qmakeFlags ../../Telegram/Telegram.pro
+ $QMAKE $qmakeFlags ../../Telegram/Telegram.pro
pattern="^PRE_TARGETDEPS +="
grep "$pattern" "../../Telegram/Telegram.pro" | sed "s/$pattern//g" | xargs make
-
- qmake $qmakeFlags ../../Telegram/Telegram.pro
buildPhase
)
diff --git a/pkgs/applications/networking/instant-messengers/utox/default.nix b/pkgs/applications/networking/instant-messengers/utox/default.nix
index c49a9805b6a..8fd653534e2 100644
--- a/pkgs/applications/networking/instant-messengers/utox/default.nix
+++ b/pkgs/applications/networking/instant-messengers/utox/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "utox-${version}";
- version = "0.7.0";
+ version = "0.9.0";
src = fetchFromGitHub {
owner = "GrayHatter";
repo = "uTox";
rev = "v${version}";
- sha256 = "1md8fw6zqd3giskd89i56dgrsl83vn27xwr8k22263wkj1fxxw4c";
+ sha256 = "12l2821m4r8p3vmsqhqhfj60yhkl4w4xfy73cvy73qqw6xf2yam1";
};
buildInputs = [ pkgconfig libtoxcore-dev dbus libvpx libX11 openal freetype
diff --git a/pkgs/applications/networking/sniffers/wireshark/default.nix b/pkgs/applications/networking/sniffers/wireshark/default.nix
index 59ded4b3b9a..0febee72096 100644
--- a/pkgs/applications/networking/sniffers/wireshark/default.nix
+++ b/pkgs/applications/networking/sniffers/wireshark/default.nix
@@ -11,7 +11,7 @@ assert withQt -> !withGtk && qt4 != null;
with stdenv.lib;
let
- version = "2.0.2";
+ version = "2.0.3";
variant = if withGtk then "gtk" else if withQt then "qt" else "cli";
in
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "http://www.wireshark.org/download/src/all-versions/wireshark-${version}.tar.bz2";
- sha256 = "1hdrnsllkfbvfwsvlqvvky0z91q63mbbnjcri56nb9c5403zn8g9";
+ sha256 = "1z358k65frp9m0l07cppwxhvbcp1w9ya5sml87pzs8gyfmp3g5p1";
};
buildInputs = [
diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix
index 0a5b2c0d74b..e0c7030a762 100644
--- a/pkgs/applications/version-management/subversion/default.nix
+++ b/pkgs/applications/version-management/subversion/default.nix
@@ -37,6 +37,10 @@ let
patches = [ ./apr-1.patch ];
+ # SVN build seems broken on gcc5:
+ # https://gcc.gnu.org/gcc-5/porting_to.html
+ CPPFLAGS = "-P";
+
configureFlags = ''
${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"}
${if httpServer then "--with-apxs=${apacheHttpd.dev}/bin/apxs" else "--without-apxs"}
diff --git a/pkgs/build-support/build-fhs-userenv/default.nix b/pkgs/build-support/build-fhs-userenv/default.nix
index a38f0a4f623..94c72e29a22 100644
--- a/pkgs/build-support/build-fhs-userenv/default.nix
+++ b/pkgs/build-support/build-fhs-userenv/default.nix
@@ -32,7 +32,7 @@ in runCommand name {
env = runCommand "${name}-shell-env" {
shellHook = ''
export CHROOTENV_EXTRA_BINDS="${lib.concatStringsSep ":" extraBindMounts}:$CHROOTENV_EXTRA_BINDS"
- exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init "bash"} "$(pwd)"
+ exec ${chroot-user}/bin/chroot-user ${env} bash ${init "bash"} "$(pwd)"
'';
} ''
echo >&2 ""
diff --git a/pkgs/data/icons/numix-icon-theme-circle/default.nix b/pkgs/data/icons/numix-icon-theme-circle/default.nix
index 8a70b2949af..61da6a23769 100644
--- a/pkgs/data/icons/numix-icon-theme-circle/default.nix
+++ b/pkgs/data/icons/numix-icon-theme-circle/default.nix
@@ -1,19 +1,17 @@
-{ stdenv, fetchFromGitHub, unzip }:
+{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
- version = "e7008b488edfe37379ba9c4b8d5245dfd6125fc3";
+ version = "2016-05-18";
package-name = "numix-icon-theme-circle";
- name = "${package-name}-20160121-${version}";
+ name = "${package-name}-${version}";
- buildInputs = [ unzip ];
-
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
- rev = version;
- sha256 = "0pfcz50b9g7zzskws94m6wvd8zm3sjvhpbzq9vjqi1q02nzflap6";
+ rev = "11a343dcd9b95e2574706157ff7bfe9aa30441d2";
+ sha256 = "0d00fj0hmqchm12j89s1r11ayg7gh8p6cn4fd7zva5n52z35az1w";
};
dontBuild = true;
diff --git a/pkgs/data/icons/numix-icon-theme/default.nix b/pkgs/data/icons/numix-icon-theme/default.nix
index 909750aec6f..45f5d2f5ae7 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 = "a704451830d343670721cbf1391df18611d61901";
+ version = "2016-05-18";
package-name = "numix-icon-theme";
- name = "${package-name}-20160120-${version}";
+ name = "${package-name}-${version}";
src = fetchFromGitHub {
owner = "numixproject";
repo = package-name;
- rev = version;
- sha256 = "0kk0rvywbm074nskjvvy0vjf6giw54jgvrw7sz9kwnv6h75ki96m";
+ rev = "d571e845b9db0e5cc5a50e6d4423d25fc0d613bd";
+ sha256 = "0d9ajh12n1ms7wbgaa3nsdhlwsjwj4flm67cxzsb3dwhpql75z0c";
};
dontBuild = true;
diff --git a/pkgs/data/icons/paper-icon-theme/default.nix b/pkgs/data/icons/paper-icon-theme/default.nix
new file mode 100644
index 00000000000..731d6158304
--- /dev/null
+++ b/pkgs/data/icons/paper-icon-theme/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchFromGitHub, autoreconfHook }:
+
+stdenv.mkDerivation rec {
+ name = "${package-name}-${version}";
+ package-name = "paper-icon-theme";
+ version = "2016-05-21";
+
+ src = fetchFromGitHub {
+ owner = "snwh";
+ repo = package-name;
+ rev = "f2a34cab78df0fa7db5a10e93e633953cb7c1eb7";
+ sha256 = "0pk848jbskkwz7im73119hcrcyr5nim37jcdrhqf4cwrshmbcacq";
+ };
+
+ nativeBuildInputs = [ autoreconfHook ];
+
+ installPhase = ''
+ make install DESTDIR="$out"
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Modern icon theme designed around bold colours and simple geometric shapes";
+ homepage = http://snwh.org/paper;
+ license = with licenses; [ cc-by-sa-40 lgpl3 ];
+ platforms = platforms.all;
+ maintainers = with maintainers; [ romildo ];
+ };
+}
diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix
index 185dd278fba..871d4d568cd 100644
--- a/pkgs/development/compilers/kotlin/default.nix
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, jre, unzip }:
stdenv.mkDerivation rec {
- version = "1.0.1-2";
+ version = "1.0.2";
name = "kotlin-${version}";
src = fetchurl {
url = "https://github.com/JetBrains/kotlin/releases/download/${version}/kotlin-compiler-${version}.zip";
- sha256 = "0kdfvkb7qh3icchxswai24ifsiw25y3mq1xxcsp8nd3jn9krnj87";
+ sha256 = "1m3j1ca0kvryqarvpscrb9mvmsscd1sc8vfjsz03br6h2hwmnr3z";
};
propagatedBuildInputs = [ jre ] ;
diff --git a/pkgs/development/compilers/llvm/3.8/libc++/default.nix b/pkgs/development/compilers/llvm/3.8/libc++/default.nix
index 00bfb3518b1..e4da582857a 100644
--- a/pkgs/development/compilers/llvm/3.8/libc++/default.nix
+++ b/pkgs/development/compilers/llvm/3.8/libc++/default.nix
@@ -3,7 +3,7 @@
stdenv.mkDerivation rec {
name = "libc++-${version}";
- src = fetch "libcxx" "0i7iyzk024krda5spfpfi8jksh83yp3bxqkal0xp76ffi11bszrm";
+ src = fetch "libcxx" "0yr3fh8vj38289b9cwk37zsy7x98dcd3kjy7xxy8mg20p48lb01n";
postUnpack = ''
unpackFile ${libcxxabi.src}
diff --git a/pkgs/development/compilers/llvm/3.8/libc++abi.nix b/pkgs/development/compilers/llvm/3.8/libc++abi.nix
index ec0be51a11c..fdbc002688e 100644
--- a/pkgs/development/compilers/llvm/3.8/libc++abi.nix
+++ b/pkgs/development/compilers/llvm/3.8/libc++abi.nix
@@ -3,7 +3,7 @@
stdenv.mkDerivation {
name = "libc++abi-${version}";
- src = fetch "libcxxabi" "0ambfcmr2nh88hx000xb7yjm9lsqjjz49w5mlf6dlxzmj3nslzx4";
+ src = fetch "libcxxabi" "0175rv2ynkklbg96kpw13iwhnzyrlw3r12f4h09p9v7nmxqhivn5";
buildInputs = [ cmake ] ++ stdenv.lib.optional (!stdenv.isDarwin && !stdenv.isFreeBSD) libunwind;
diff --git a/pkgs/development/compilers/llvm/3.8/llvm.nix b/pkgs/development/compilers/llvm/3.8/llvm.nix
index 93f5a9f6367..ef929dec68b 100644
--- a/pkgs/development/compilers/llvm/3.8/llvm.nix
+++ b/pkgs/development/compilers/llvm/3.8/llvm.nix
@@ -35,6 +35,13 @@ in stdenv.mkDerivation rec {
propagatedBuildInputs = [ ncurses zlib ];
+ # hacky fix: New LLVM releases require a newer OS X SDK than
+ # 10.9. This is a temporary measure until nixpkgs darwin support is
+ # updated.
+ patchPhase = stdenv.lib.optionalString stdenv.isDarwin ''
+ sed -i 's/os_trace(\(.*\)");$/printf(\1\\n");/g' ./projects/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc
+ '';
+
# hacky fix: created binaries need to be run before installation
preBuild = ''
mkdir -p $out/
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix
index 650cbd38e6e..4874d61d241 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1117,6 +1118,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1445,6 +1447,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1753,6 +1756,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2173,6 +2177,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2314,6 +2319,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2337,6 +2343,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2462,6 +2469,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2579,6 +2587,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3015,6 +3024,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3030,6 +3040,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3114,6 +3125,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3175,6 +3187,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3507,6 +3520,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3536,6 +3550,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3604,9 +3619,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3959,6 +3976,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4033,6 +4051,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5040,6 +5060,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5101,6 +5122,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5121,6 +5143,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5147,6 +5170,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5274,6 +5298,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5737,6 +5762,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6274,6 +6300,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6316,6 +6343,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6366,6 +6394,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6380,6 +6409,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6482,6 +6512,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6500,6 +6531,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6924,6 +6956,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -7017,6 +7050,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7220,6 +7254,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7603,6 +7638,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7817,6 +7853,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7839,6 +7876,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_5";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7989,6 +8027,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8134,6 +8173,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8345,6 +8385,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8416,6 +8457,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8462,6 +8504,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8625,6 +8668,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8947,6 +8991,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix
index 4cafbf175bc..4f66d9114f6 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1117,6 +1118,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1445,6 +1447,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1753,6 +1756,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2173,6 +2177,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2314,6 +2319,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2337,6 +2343,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2462,6 +2469,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2579,6 +2587,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3015,6 +3024,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3030,6 +3040,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3114,6 +3125,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3175,6 +3187,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3507,6 +3520,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3536,6 +3550,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3604,9 +3619,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3959,6 +3976,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4033,6 +4051,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5040,6 +5060,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5101,6 +5122,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5121,6 +5143,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5147,6 +5170,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5274,6 +5298,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5737,6 +5762,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6274,6 +6300,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6316,6 +6343,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6366,6 +6394,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6380,6 +6409,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6482,6 +6512,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6500,6 +6531,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6924,6 +6956,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -7017,6 +7050,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7220,6 +7254,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7603,6 +7638,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7817,6 +7853,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7839,6 +7876,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_5";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7989,6 +8027,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8134,6 +8173,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8345,6 +8385,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8416,6 +8457,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8462,6 +8504,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8625,6 +8668,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8947,6 +8991,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix
index 443563ba934..eb791378eb8 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1117,6 +1118,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1445,6 +1447,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1753,6 +1756,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2173,6 +2177,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2314,6 +2319,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2337,6 +2343,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2462,6 +2469,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2579,6 +2587,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3015,6 +3024,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3030,6 +3040,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3114,6 +3125,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3175,6 +3187,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3507,6 +3520,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3536,6 +3550,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3604,9 +3619,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3959,6 +3976,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4033,6 +4051,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5040,6 +5060,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5101,6 +5122,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5121,6 +5143,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5147,6 +5170,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5274,6 +5298,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5737,6 +5762,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6274,6 +6300,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6316,6 +6343,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6366,6 +6394,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6380,6 +6409,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6482,6 +6512,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6500,6 +6531,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6924,6 +6956,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -7017,6 +7050,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7220,6 +7254,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7603,6 +7638,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7817,6 +7853,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7839,6 +7876,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_5";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7989,6 +8027,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8134,6 +8173,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8345,6 +8385,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8416,6 +8457,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8462,6 +8504,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8625,6 +8668,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8947,6 +8991,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix
index 480526af9a2..18c8a665044 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1117,6 +1118,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1445,6 +1447,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1753,6 +1756,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2173,6 +2177,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2314,6 +2319,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2337,6 +2343,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2462,6 +2469,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2579,6 +2587,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3015,6 +3024,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3030,6 +3040,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3114,6 +3125,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3175,6 +3187,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3507,6 +3520,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3536,6 +3550,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3604,9 +3619,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3959,6 +3976,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4033,6 +4051,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5040,6 +5060,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5101,6 +5122,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5121,6 +5143,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5147,6 +5170,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5274,6 +5298,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5737,6 +5762,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6274,6 +6300,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6316,6 +6343,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6366,6 +6394,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6380,6 +6409,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6482,6 +6512,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6500,6 +6531,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6924,6 +6956,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -7017,6 +7050,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7220,6 +7254,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7603,6 +7638,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7817,6 +7853,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7839,6 +7876,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_5";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7989,6 +8027,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8134,6 +8173,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8345,6 +8385,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8416,6 +8457,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8462,6 +8504,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8625,6 +8668,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8947,6 +8991,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix
index 4083103c25d..e50d8593e2a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1117,6 +1118,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1445,6 +1447,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1753,6 +1756,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2173,6 +2177,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2314,6 +2319,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2337,6 +2343,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2462,6 +2469,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2579,6 +2587,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3014,6 +3023,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3029,6 +3039,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3113,6 +3124,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3174,6 +3186,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3506,6 +3519,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3535,6 +3549,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3603,9 +3618,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3956,6 +3973,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4030,6 +4048,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5037,6 +5057,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5098,6 +5119,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5118,6 +5140,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5144,6 +5167,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5271,6 +5295,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5734,6 +5759,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6271,6 +6297,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6313,6 +6340,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6363,6 +6391,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6377,6 +6406,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6479,6 +6509,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6497,6 +6528,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6921,6 +6953,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -7014,6 +7047,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7217,6 +7251,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7599,6 +7634,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7813,6 +7849,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7835,6 +7872,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_5";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7985,6 +8023,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8130,6 +8169,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8341,6 +8381,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8412,6 +8453,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8458,6 +8500,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8621,6 +8664,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8943,6 +8987,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix
index 46d0d2119f8..e6e4330b25c 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1117,6 +1118,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1445,6 +1447,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1753,6 +1756,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2173,6 +2177,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2314,6 +2319,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2337,6 +2343,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2462,6 +2469,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2579,6 +2587,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3014,6 +3023,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3029,6 +3039,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3113,6 +3124,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3174,6 +3186,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3506,6 +3519,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3535,6 +3549,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3603,9 +3618,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3956,6 +3973,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4030,6 +4048,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5037,6 +5057,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5098,6 +5119,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5118,6 +5140,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5144,6 +5167,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5271,6 +5295,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5734,6 +5759,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6271,6 +6297,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6313,6 +6340,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6363,6 +6391,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6377,6 +6406,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6479,6 +6509,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6497,6 +6528,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6921,6 +6953,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -7014,6 +7047,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7217,6 +7251,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7599,6 +7634,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7813,6 +7849,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7835,6 +7872,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_5";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7985,6 +8023,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8130,6 +8169,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8341,6 +8381,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8412,6 +8453,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8458,6 +8500,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8621,6 +8664,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8943,6 +8987,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix
index ace7afaccec..e16192c3cc7 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1116,6 +1117,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1444,6 +1446,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1752,6 +1755,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2172,6 +2176,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2313,6 +2318,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2336,6 +2342,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2461,6 +2468,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2578,6 +2586,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3013,6 +3022,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3028,6 +3038,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3112,6 +3123,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3173,6 +3185,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3505,6 +3518,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3534,6 +3548,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3602,9 +3617,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3955,6 +3972,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4029,6 +4047,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5035,6 +5055,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5096,6 +5117,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5116,6 +5138,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5142,6 +5165,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5269,6 +5293,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5732,6 +5757,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6269,6 +6295,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6311,6 +6338,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6361,6 +6389,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6375,6 +6404,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6477,6 +6507,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6495,6 +6526,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6919,6 +6951,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -7012,6 +7045,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7215,6 +7249,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7596,6 +7631,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7810,6 +7846,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7832,6 +7869,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7982,6 +8020,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8127,6 +8166,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8338,6 +8378,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8409,6 +8450,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8455,6 +8497,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8618,6 +8661,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8940,6 +8984,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix
index dd0c62bb142..48d327cb905 100644
--- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix
@@ -682,6 +682,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1116,6 +1117,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1444,6 +1446,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1752,6 +1755,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2172,6 +2176,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2313,6 +2318,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2336,6 +2342,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2461,6 +2468,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2578,6 +2586,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3013,6 +3022,7 @@ self: super: {
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
"elm-core-sources" = dontDistribute super."elm-core-sources";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3028,6 +3038,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3112,6 +3123,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3173,6 +3185,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3505,6 +3518,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3534,6 +3548,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3602,9 +3617,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3955,6 +3972,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4029,6 +4047,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5035,6 +5055,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5096,6 +5117,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5116,6 +5138,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5142,6 +5165,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5269,6 +5293,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5732,6 +5757,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6269,6 +6295,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6311,6 +6338,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6361,6 +6389,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6375,6 +6404,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6477,6 +6507,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6495,6 +6526,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6919,6 +6951,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -7012,6 +7045,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7215,6 +7249,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7596,6 +7631,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7810,6 +7846,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7832,6 +7869,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7982,6 +8020,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8127,6 +8166,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8338,6 +8378,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8409,6 +8450,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8455,6 +8497,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8618,6 +8661,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8940,6 +8984,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix
index 65d6fb97672..f8248d6a10c 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix
@@ -679,6 +679,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1113,6 +1114,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1441,6 +1443,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1748,6 +1751,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2166,6 +2170,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2307,6 +2312,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2330,6 +2336,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2454,6 +2461,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2571,6 +2579,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3004,6 +3013,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3019,6 +3029,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3103,6 +3114,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3165,6 +3177,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3497,6 +3510,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3526,6 +3540,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3594,9 +3609,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3946,6 +3963,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4020,6 +4038,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5026,6 +5046,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5087,6 +5108,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5107,6 +5129,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5133,6 +5156,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5260,6 +5284,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5723,6 +5748,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6260,6 +6286,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6302,6 +6329,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6352,6 +6380,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6366,6 +6395,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6468,6 +6498,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6486,6 +6517,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6910,6 +6942,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -7003,6 +7036,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7206,6 +7240,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7586,6 +7621,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7800,6 +7836,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7822,6 +7859,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7971,6 +8009,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8116,6 +8155,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8327,6 +8367,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8398,6 +8439,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8444,6 +8486,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8607,6 +8650,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8928,6 +8972,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix
index a4f9f8619ce..96d9ece7f76 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix
@@ -679,6 +679,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1113,6 +1114,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1441,6 +1443,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1748,6 +1751,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2165,6 +2169,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2306,6 +2311,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2329,6 +2335,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2452,6 +2459,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2569,6 +2577,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -3001,6 +3010,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3016,6 +3026,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3100,6 +3111,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3162,6 +3174,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3494,6 +3507,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3523,6 +3537,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3591,9 +3606,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3943,6 +3960,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4017,6 +4035,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5020,6 +5040,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5081,6 +5102,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5101,6 +5123,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5127,6 +5150,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5254,6 +5278,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5717,6 +5742,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6253,6 +6279,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6295,6 +6322,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6345,6 +6373,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6359,6 +6388,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6461,6 +6491,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6479,6 +6510,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6903,6 +6935,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6996,6 +7029,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7199,6 +7233,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7579,6 +7614,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7792,6 +7828,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7814,6 +7851,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7963,6 +8001,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8107,6 +8146,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8318,6 +8358,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8387,6 +8428,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8432,6 +8474,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8595,6 +8638,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8915,6 +8959,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix
index 18f9863b7cf..d604d9359e5 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3486,6 +3499,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3515,6 +3529,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3582,9 +3597,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3933,6 +3950,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4007,6 +4025,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5004,6 +5024,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5065,6 +5086,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5085,6 +5107,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5111,6 +5134,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5238,6 +5262,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5700,6 +5725,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6235,6 +6261,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6276,6 +6303,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6326,6 +6354,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6340,6 +6369,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6441,6 +6471,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6459,6 +6490,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6883,6 +6915,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6976,6 +7009,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7178,6 +7212,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7557,6 +7592,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7769,6 +7805,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7791,6 +7828,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7940,6 +7978,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8084,6 +8123,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8293,6 +8333,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8362,6 +8403,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8407,6 +8449,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8568,6 +8611,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8887,6 +8931,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix
index d695840afc3..85ef12fbbe8 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3485,6 +3498,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3514,6 +3528,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3581,9 +3596,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3932,6 +3949,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4006,6 +4024,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5002,6 +5022,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5063,6 +5084,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5082,6 +5104,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5108,6 +5131,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5235,6 +5259,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5696,6 +5721,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6231,6 +6257,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6272,6 +6299,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6322,6 +6350,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6336,6 +6365,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6437,6 +6467,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6455,6 +6486,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6879,6 +6911,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6972,6 +7005,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7174,6 +7208,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7553,6 +7588,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7765,6 +7801,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7787,6 +7824,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7936,6 +7974,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8080,6 +8119,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8289,6 +8329,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8358,6 +8399,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8403,6 +8445,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8564,6 +8607,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8883,6 +8927,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix
index 1da893c7adb..57686be7bb7 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3485,6 +3498,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3514,6 +3528,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3581,9 +3596,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3932,6 +3949,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4006,6 +4024,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5001,6 +5021,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5062,6 +5083,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5081,6 +5103,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5107,6 +5130,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5234,6 +5258,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5695,6 +5720,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6230,6 +6256,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6271,6 +6298,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6321,6 +6349,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6335,6 +6364,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6436,6 +6466,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6454,6 +6485,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6878,6 +6910,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6971,6 +7004,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7173,6 +7207,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7552,6 +7587,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7764,6 +7800,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7786,6 +7823,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7935,6 +7973,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8079,6 +8118,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8288,6 +8328,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8357,6 +8398,7 @@ self: super: {
"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_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8402,6 +8444,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8563,6 +8606,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8882,6 +8926,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix
index f40adc27b44..cf25c96a85a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3485,6 +3498,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3514,6 +3528,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3581,9 +3596,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3931,6 +3948,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4005,6 +4023,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5000,6 +5020,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5061,6 +5082,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5080,6 +5102,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5106,6 +5129,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5233,6 +5257,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5694,6 +5719,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6229,6 +6255,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6270,6 +6297,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6320,6 +6348,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6334,6 +6363,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6435,6 +6465,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6453,6 +6484,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6877,6 +6909,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6970,6 +7003,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7172,6 +7206,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7551,6 +7586,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7763,6 +7799,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7785,6 +7822,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7934,6 +7972,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8078,6 +8117,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8286,6 +8326,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8355,6 +8396,7 @@ self: super: {
"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_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8400,6 +8442,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8561,6 +8604,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8880,6 +8924,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix
index 503f9fbc5ba..7f0d5218050 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix
@@ -677,6 +677,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1111,6 +1112,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1439,6 +1441,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1745,6 +1748,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2160,6 +2164,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2301,6 +2306,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2324,6 +2330,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2445,6 +2452,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2562,6 +2570,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2994,6 +3003,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3009,6 +3019,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3093,6 +3104,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3155,6 +3167,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3482,6 +3495,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3511,6 +3525,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3578,9 +3593,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3928,6 +3945,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4002,6 +4020,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4997,6 +5017,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5058,6 +5079,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5077,6 +5099,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5103,6 +5126,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5230,6 +5254,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5691,6 +5716,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6226,6 +6252,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6267,6 +6294,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6317,6 +6345,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6331,6 +6360,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6432,6 +6462,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6450,6 +6481,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6874,6 +6906,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6967,6 +7000,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7168,6 +7202,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7547,6 +7582,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7759,6 +7795,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7781,6 +7818,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7930,6 +7968,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8074,6 +8113,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8282,6 +8322,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8351,6 +8392,7 @@ self: super: {
"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_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8396,6 +8438,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8557,6 +8600,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8876,6 +8920,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix
index c8579330df6..2283955312c 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix
@@ -677,6 +677,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1110,6 +1111,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1438,6 +1440,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1744,6 +1747,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2158,6 +2162,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2299,6 +2304,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2322,6 +2328,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2443,6 +2450,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2559,6 +2567,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2991,6 +3000,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3006,6 +3016,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3089,6 +3100,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3151,6 +3163,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3478,6 +3491,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3507,6 +3521,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3574,9 +3589,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3924,6 +3941,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3998,6 +4016,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4993,6 +5013,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5054,6 +5075,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5073,6 +5095,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5099,6 +5122,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5226,6 +5250,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5687,6 +5712,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6220,6 +6246,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6261,6 +6288,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6311,6 +6339,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6325,6 +6354,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6426,6 +6456,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6444,6 +6475,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6868,6 +6900,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6961,6 +6994,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7161,6 +7195,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7540,6 +7575,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7752,6 +7788,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7774,6 +7811,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7923,6 +7961,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8065,6 +8104,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8273,6 +8313,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8342,6 +8383,7 @@ self: super: {
"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_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8387,6 +8429,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8548,6 +8591,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8867,6 +8911,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix
index 91ea67ba52b..deb78ec2c80 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix
@@ -679,6 +679,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1113,6 +1114,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1441,6 +1443,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1748,6 +1751,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2164,6 +2168,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2305,6 +2310,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2328,6 +2334,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2450,6 +2457,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2567,6 +2575,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2999,6 +3008,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3014,6 +3024,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3098,6 +3109,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3160,6 +3172,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3492,6 +3505,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3521,6 +3535,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3588,9 +3603,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3940,6 +3957,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4014,6 +4032,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5017,6 +5037,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5078,6 +5099,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5098,6 +5120,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5124,6 +5147,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5251,6 +5275,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5714,6 +5739,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6250,6 +6276,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6292,6 +6319,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6342,6 +6370,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6356,6 +6385,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6457,6 +6487,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6475,6 +6506,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6899,6 +6931,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6992,6 +7025,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7194,6 +7228,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7573,6 +7608,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7786,6 +7822,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7808,6 +7845,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7957,6 +7995,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8101,6 +8140,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8312,6 +8352,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8381,6 +8422,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8426,6 +8468,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8589,6 +8632,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8909,6 +8953,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix
index 63e9fcbaad2..dcd76ecab9e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2163,6 +2167,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2304,6 +2309,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2327,6 +2333,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2449,6 +2456,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2566,6 +2574,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2998,6 +3007,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3013,6 +3023,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3097,6 +3108,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3159,6 +3171,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3490,6 +3503,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3519,6 +3533,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3586,9 +3601,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3938,6 +3955,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4012,6 +4030,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5014,6 +5034,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5075,6 +5096,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5095,6 +5117,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5121,6 +5144,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5248,6 +5272,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5711,6 +5736,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6246,6 +6272,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6288,6 +6315,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6338,6 +6366,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6352,6 +6381,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6453,6 +6483,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6471,6 +6502,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6895,6 +6927,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6988,6 +7021,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7190,6 +7224,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7569,6 +7604,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7782,6 +7818,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7804,6 +7841,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7953,6 +7991,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8097,6 +8136,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8307,6 +8347,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8376,6 +8417,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8421,6 +8463,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8584,6 +8627,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8904,6 +8948,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix
index 023ec7a4d25..6d82f3c57d8 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3489,6 +3502,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3518,6 +3532,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3585,9 +3600,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3937,6 +3954,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4011,6 +4029,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5013,6 +5033,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5074,6 +5095,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5094,6 +5116,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5120,6 +5143,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5247,6 +5271,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5710,6 +5735,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6245,6 +6271,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6287,6 +6314,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6337,6 +6365,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6351,6 +6380,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6452,6 +6482,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6470,6 +6501,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6894,6 +6926,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6987,6 +7020,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7189,6 +7223,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7568,6 +7603,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7781,6 +7817,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7803,6 +7840,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7952,6 +7990,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8096,6 +8135,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8306,6 +8346,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8375,6 +8416,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8420,6 +8462,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8582,6 +8625,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8901,6 +8945,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix
index c6753374f64..0047f321261 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3489,6 +3502,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3518,6 +3532,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3585,9 +3600,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3937,6 +3954,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4011,6 +4029,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5008,6 +5028,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5069,6 +5090,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5089,6 +5111,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5115,6 +5138,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5242,6 +5266,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5705,6 +5730,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6240,6 +6266,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6282,6 +6309,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6332,6 +6360,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6346,6 +6375,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6447,6 +6477,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6465,6 +6496,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6889,6 +6921,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6982,6 +7015,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7184,6 +7218,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7563,6 +7598,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7776,6 +7812,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7798,6 +7835,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7947,6 +7985,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8091,6 +8130,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8301,6 +8341,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8370,6 +8411,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8415,6 +8457,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8577,6 +8620,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8896,6 +8940,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix
index b0673b6d1f5..8db32b7d58c 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3487,6 +3500,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3516,6 +3530,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3583,9 +3598,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3934,6 +3951,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4008,6 +4026,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5005,6 +5025,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5066,6 +5087,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5086,6 +5108,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5112,6 +5135,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5239,6 +5263,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5701,6 +5726,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6236,6 +6262,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6278,6 +6305,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6328,6 +6356,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6342,6 +6371,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6443,6 +6473,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_1";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6461,6 +6492,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6885,6 +6917,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6978,6 +7011,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7180,6 +7214,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7559,6 +7594,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7772,6 +7808,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7794,6 +7831,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7943,6 +7981,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8087,6 +8126,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8297,6 +8337,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8366,6 +8407,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8411,6 +8453,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8572,6 +8615,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8891,6 +8935,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix
index 41d9848ebbc..9e6cd4d54ca 100644
--- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix
@@ -678,6 +678,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1112,6 +1113,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1440,6 +1442,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1747,6 +1750,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2162,6 +2166,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2303,6 +2308,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2326,6 +2332,7 @@ self: super: {
"consul-haskell" = dontDistribute super."consul-haskell";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2448,6 +2455,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = dontDistribute super."cryptol";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2565,6 +2573,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2997,6 +3006,7 @@ self: super: {
"elision" = dontDistribute super."elision";
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-compiler" = doDistribute super."elm-compiler_0_14_1";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -3012,6 +3022,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3096,6 +3107,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3158,6 +3170,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3486,6 +3499,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3515,6 +3529,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3582,9 +3597,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3933,6 +3950,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -4007,6 +4025,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -5004,6 +5024,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5065,6 +5086,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5085,6 +5107,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5111,6 +5134,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5238,6 +5262,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5700,6 +5725,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6235,6 +6261,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6277,6 +6304,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6327,6 +6355,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6341,6 +6370,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6442,6 +6472,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6460,6 +6491,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6884,6 +6916,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6977,6 +7010,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7179,6 +7213,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7558,6 +7593,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = dontDistribute super."servant";
@@ -7771,6 +7807,7 @@ self: super: {
"smoothie" = dontDistribute super."smoothie";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7793,6 +7830,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_4_6";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7942,6 +7980,7 @@ self: super: {
"srcloc" = dontDistribute super."srcloc";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8086,6 +8125,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8296,6 +8336,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8365,6 +8406,7 @@ self: super: {
"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-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8410,6 +8452,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8571,6 +8614,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = dontDistribute super."turtle";
@@ -8890,6 +8934,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix
index ecdf00390c3..612cd4179b1 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix
@@ -673,6 +673,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1104,6 +1105,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1430,6 +1432,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1736,6 +1739,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2148,6 +2152,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2289,6 +2294,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2312,6 +2318,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2431,6 +2438,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_1";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2547,6 +2555,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2980,6 +2989,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2995,6 +3005,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3077,6 +3088,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3140,6 +3152,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3464,6 +3477,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3493,6 +3507,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3560,9 +3575,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3908,6 +3925,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3982,6 +4000,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4971,6 +4991,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5031,6 +5052,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5050,6 +5072,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5076,6 +5099,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5201,6 +5225,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5656,6 +5681,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6180,6 +6206,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6221,6 +6248,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6271,6 +6299,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6285,6 +6314,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6386,6 +6416,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6404,6 +6435,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6463,6 +6495,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6722,6 +6755,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6825,6 +6859,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6919,6 +6954,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7119,6 +7155,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7497,6 +7534,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7708,6 +7746,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7730,6 +7769,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7876,6 +7916,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8018,6 +8059,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8224,6 +8266,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8293,6 +8336,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_3";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8338,6 +8382,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8499,6 +8544,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8816,6 +8862,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix
index c5fa05bdec2..a3c9f3ef1f9 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix
@@ -673,6 +673,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1104,6 +1105,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1430,6 +1432,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1736,6 +1739,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2147,6 +2151,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2288,6 +2293,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2311,6 +2317,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2430,6 +2437,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_1";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2546,6 +2554,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2979,6 +2988,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2994,6 +3004,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3076,6 +3087,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3139,6 +3151,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3463,6 +3476,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3492,6 +3506,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3559,9 +3574,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3907,6 +3924,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3981,6 +3999,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4970,6 +4990,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5030,6 +5051,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5049,6 +5071,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5075,6 +5098,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5200,6 +5224,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5655,6 +5680,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6179,6 +6205,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6220,6 +6247,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6270,6 +6298,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6284,6 +6313,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6385,6 +6415,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6403,6 +6434,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6462,6 +6494,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6721,6 +6754,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6824,6 +6858,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6918,6 +6953,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7118,6 +7154,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7496,6 +7533,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7707,6 +7745,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7729,6 +7768,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7875,6 +7915,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8017,6 +8058,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8223,6 +8265,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8292,6 +8335,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_3";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8337,6 +8381,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8498,6 +8543,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8814,6 +8860,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix
index 94d2f684701..759c907ce44 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1425,6 +1427,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1727,6 +1730,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2136,6 +2140,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2277,6 +2282,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2300,6 +2306,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2418,6 +2425,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2534,6 +2542,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2965,6 +2974,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2980,6 +2990,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3061,6 +3072,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3124,6 +3136,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3446,6 +3459,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3475,6 +3489,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3542,9 +3557,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3888,6 +3905,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3962,6 +3980,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4948,6 +4968,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5008,6 +5029,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5027,6 +5049,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5053,6 +5076,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5176,6 +5200,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5630,6 +5655,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6154,6 +6180,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6195,6 +6222,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6245,6 +6273,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6259,6 +6288,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6360,6 +6390,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = doDistribute super."optparse-simple_0_0_2";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6378,6 +6409,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6437,6 +6469,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6694,6 +6727,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6797,6 +6831,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6891,6 +6926,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7090,6 +7126,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7466,6 +7503,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7677,6 +7715,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7699,6 +7738,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7844,6 +7884,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7981,6 +8022,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8185,6 +8227,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8254,6 +8297,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_3";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8299,6 +8343,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8458,6 +8503,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8774,6 +8820,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix
index 61d31f0ad61..c8bce7ee592 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1424,6 +1426,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1726,6 +1729,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2135,6 +2139,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2276,6 +2281,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2299,6 +2305,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2417,6 +2424,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2533,6 +2541,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2964,6 +2973,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2979,6 +2989,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3060,6 +3071,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3123,6 +3135,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3445,6 +3458,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3474,6 +3488,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3540,9 +3555,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3886,6 +3903,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3960,6 +3978,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4945,6 +4965,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5005,6 +5026,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5024,6 +5046,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5050,6 +5073,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5172,6 +5196,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5626,6 +5651,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5888,6 +5914,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
@@ -6149,6 +6176,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_6";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6190,6 +6218,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6240,6 +6269,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6254,6 +6284,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6355,6 +6386,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6372,6 +6404,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6431,6 +6464,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6688,6 +6722,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6791,6 +6826,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6885,6 +6921,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7084,6 +7121,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7459,6 +7497,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7670,6 +7709,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7692,6 +7732,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7837,6 +7878,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7973,6 +8015,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8176,6 +8219,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8245,6 +8289,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_3";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8290,6 +8335,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8449,6 +8495,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8765,6 +8812,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix
index d351d001355..3e2c4ccda1e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1424,6 +1426,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1726,6 +1729,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2135,6 +2139,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2276,6 +2281,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2299,6 +2305,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2417,6 +2424,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2533,6 +2541,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2964,6 +2973,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2979,6 +2989,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3060,6 +3071,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3123,6 +3135,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3445,6 +3458,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3474,6 +3488,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3540,9 +3555,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3886,6 +3903,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3960,6 +3978,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4945,6 +4965,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5005,6 +5026,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5024,6 +5046,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5050,6 +5073,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5172,6 +5196,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5626,6 +5651,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5888,6 +5914,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
@@ -6149,6 +6176,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_6";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6190,6 +6218,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6240,6 +6269,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6254,6 +6284,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6355,6 +6386,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6372,6 +6404,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6431,6 +6464,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6688,6 +6722,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6791,6 +6826,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6885,6 +6921,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7084,6 +7121,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7458,6 +7496,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7669,6 +7708,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7691,6 +7731,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7836,6 +7877,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7972,6 +8014,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8175,6 +8218,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8244,6 +8288,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_3";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8289,6 +8334,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8448,6 +8494,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8764,6 +8811,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix
index 3dac4d96229..75792f5f588 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1424,6 +1426,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1726,6 +1729,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2135,6 +2139,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2276,6 +2281,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2299,6 +2305,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2417,6 +2424,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2533,6 +2541,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2964,6 +2973,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2979,6 +2989,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3060,6 +3071,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3123,6 +3135,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3445,6 +3458,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3474,6 +3488,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3540,9 +3555,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3885,6 +3902,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3959,6 +3977,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4943,6 +4963,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5003,6 +5024,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5022,6 +5044,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5048,6 +5071,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5170,6 +5194,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5624,6 +5649,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5886,6 +5912,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
@@ -6147,6 +6174,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_6";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6188,6 +6216,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6238,6 +6267,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6252,6 +6282,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6353,6 +6384,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6370,6 +6402,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6429,6 +6462,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6686,6 +6720,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6789,6 +6824,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6883,6 +6919,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7082,6 +7119,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7456,6 +7494,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7667,6 +7706,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7689,6 +7729,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7834,6 +7875,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7970,6 +8012,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8173,6 +8216,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8242,6 +8286,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_3";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8287,6 +8332,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8446,6 +8492,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8762,6 +8809,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix
index 704a1ce1cd2..b72bbc09773 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1424,6 +1426,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1726,6 +1729,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2135,6 +2139,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2276,6 +2281,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2299,6 +2305,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2417,6 +2424,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2533,6 +2541,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2964,6 +2973,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2979,6 +2989,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3060,6 +3071,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3123,6 +3135,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3444,6 +3457,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3473,6 +3487,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3539,9 +3554,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3884,6 +3901,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3958,6 +3976,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4941,6 +4961,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5001,6 +5022,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5020,6 +5042,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5046,6 +5069,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5168,6 +5192,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5622,6 +5647,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5884,6 +5910,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
@@ -6145,6 +6172,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_6";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6186,6 +6214,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6236,6 +6265,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6250,6 +6280,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6351,6 +6382,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6368,6 +6400,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6427,6 +6460,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6684,6 +6718,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6787,6 +6822,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6881,6 +6917,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7080,6 +7117,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7454,6 +7492,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7597,6 +7636,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7664,6 +7704,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7686,6 +7727,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7831,6 +7873,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7967,6 +8010,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8170,6 +8214,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8239,6 +8284,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_3";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8284,6 +8330,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8443,6 +8490,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8759,6 +8807,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix
index a31c927ce60..c6d13c8036e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1424,6 +1426,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1726,6 +1729,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2135,6 +2139,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2276,6 +2281,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2299,6 +2305,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2417,6 +2424,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2533,6 +2541,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2964,6 +2973,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2979,6 +2989,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3059,6 +3070,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3122,6 +3134,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3443,6 +3456,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3472,6 +3486,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3538,9 +3553,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3883,6 +3900,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3957,6 +3975,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4940,6 +4960,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5000,6 +5021,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5019,6 +5041,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5045,6 +5068,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5167,6 +5191,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5621,6 +5646,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5883,6 +5909,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
@@ -6143,6 +6170,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_6";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6184,6 +6212,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6234,6 +6263,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6248,6 +6278,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6349,6 +6380,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6366,6 +6398,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6425,6 +6458,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6682,6 +6716,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6785,6 +6820,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6879,6 +6915,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7078,6 +7115,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7452,6 +7490,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7595,6 +7634,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7662,6 +7702,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7684,6 +7725,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7828,6 +7870,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7964,6 +8007,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8167,6 +8211,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8236,6 +8281,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8281,6 +8327,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8440,6 +8487,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8756,6 +8804,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix
index d9da0c1d9ef..23a35256fd7 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1424,6 +1426,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1726,6 +1729,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2134,6 +2138,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2275,6 +2280,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2298,6 +2304,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2416,6 +2423,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2532,6 +2540,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2962,6 +2971,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2977,6 +2987,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3057,6 +3068,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3120,6 +3132,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3440,6 +3453,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3469,6 +3483,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3535,9 +3550,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3880,6 +3897,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3954,6 +3972,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4937,6 +4957,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4997,6 +5018,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5016,6 +5038,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5042,6 +5065,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5164,6 +5188,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5617,6 +5642,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5879,6 +5905,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
@@ -6139,6 +6166,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_6";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6180,6 +6208,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6230,6 +6259,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6244,6 +6274,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6345,6 +6376,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6362,6 +6394,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6421,6 +6454,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6678,6 +6712,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6781,6 +6816,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6875,6 +6911,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7074,6 +7111,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7448,6 +7486,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7591,6 +7630,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7658,6 +7698,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7680,6 +7721,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7824,6 +7866,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7960,6 +8003,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8163,6 +8207,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8232,6 +8277,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8277,6 +8323,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8436,6 +8483,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8752,6 +8800,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix
index 930f92194ab..f7ebcd4db4d 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1423,6 +1425,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1725,6 +1728,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2132,6 +2136,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2273,6 +2278,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2296,6 +2302,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2414,6 +2421,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2530,6 +2538,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2960,6 +2969,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2975,6 +2985,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3055,6 +3066,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3117,6 +3129,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3436,6 +3449,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3465,6 +3479,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3531,9 +3546,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3876,6 +3893,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3950,6 +3968,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4933,6 +4953,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4993,6 +5014,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5012,6 +5034,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5038,6 +5061,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5160,6 +5184,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5613,6 +5638,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5875,6 +5901,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_1";
@@ -6135,6 +6162,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6176,6 +6204,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6225,6 +6254,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6239,6 +6269,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6340,6 +6371,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6357,6 +6389,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6416,6 +6449,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6673,6 +6707,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6776,6 +6811,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6870,6 +6906,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7069,6 +7106,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7443,6 +7481,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7586,6 +7625,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7653,6 +7693,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7675,6 +7716,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7819,6 +7861,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7955,6 +7998,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8158,6 +8202,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8227,6 +8272,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8272,6 +8318,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8431,6 +8478,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8747,6 +8795,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix
index 76dc598d9a2..4fc4beaab55 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1423,6 +1425,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1725,6 +1728,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2131,6 +2135,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2272,6 +2277,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2295,6 +2301,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2413,6 +2420,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2529,6 +2537,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2958,6 +2967,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2973,6 +2983,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3053,6 +3064,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3115,6 +3127,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3434,6 +3447,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3463,6 +3477,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3529,9 +3544,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3874,6 +3891,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3948,6 +3966,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4931,6 +4951,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4991,6 +5012,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5010,6 +5032,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5036,6 +5059,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5158,6 +5182,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5611,6 +5636,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5873,6 +5899,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -6132,6 +6159,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6173,6 +6201,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6222,6 +6251,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6236,6 +6266,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6337,6 +6368,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6354,6 +6386,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6413,6 +6446,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6670,6 +6704,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6773,6 +6808,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6867,6 +6903,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7066,6 +7103,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7440,6 +7478,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7583,6 +7622,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7650,6 +7690,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7672,6 +7713,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7816,6 +7858,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7951,6 +7994,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8154,6 +8198,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8223,6 +8268,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8268,6 +8314,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8427,6 +8474,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8743,6 +8791,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix
index 91f1c3b9155..beb37675ce3 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1423,6 +1425,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1725,6 +1728,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2131,6 +2135,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2272,6 +2277,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2295,6 +2301,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2413,6 +2420,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2529,6 +2537,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2958,6 +2967,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2973,6 +2983,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3053,6 +3064,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3115,6 +3127,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3433,6 +3446,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3462,6 +3476,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3528,9 +3543,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3873,6 +3890,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3947,6 +3965,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4930,6 +4950,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4990,6 +5011,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5009,6 +5031,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5035,6 +5058,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5157,6 +5181,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5610,6 +5635,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5871,6 +5897,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -6130,6 +6157,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6171,6 +6199,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6220,6 +6249,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6234,6 +6264,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6335,6 +6366,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6352,6 +6384,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6411,6 +6444,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6668,6 +6702,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6771,6 +6806,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6865,6 +6901,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7064,6 +7101,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7438,6 +7476,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7581,6 +7620,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7648,6 +7688,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7670,6 +7711,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7814,6 +7856,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7949,6 +7992,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8152,6 +8196,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8221,6 +8266,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8266,6 +8312,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8425,6 +8472,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8741,6 +8789,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix
index 6ef69d35e0c..b92f436f1a4 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix
@@ -673,6 +673,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1103,6 +1104,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1429,6 +1431,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1735,6 +1738,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2144,6 +2148,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2285,6 +2290,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2308,6 +2314,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2427,6 +2434,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_1";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2543,6 +2551,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2976,6 +2985,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2991,6 +3001,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3073,6 +3084,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3136,6 +3148,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3460,6 +3473,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3489,6 +3503,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3556,9 +3571,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3904,6 +3921,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3978,6 +3996,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4967,6 +4987,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5027,6 +5048,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5046,6 +5068,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5072,6 +5095,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5197,6 +5221,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5652,6 +5677,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6176,6 +6202,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6217,6 +6244,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6267,6 +6295,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6281,6 +6310,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6382,6 +6412,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6400,6 +6431,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6459,6 +6491,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6718,6 +6751,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6821,6 +6855,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6915,6 +6950,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7115,6 +7151,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7493,6 +7530,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7704,6 +7742,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7726,6 +7765,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7872,6 +7912,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8014,6 +8055,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8220,6 +8262,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8289,6 +8332,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_3";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8334,6 +8378,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8495,6 +8540,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8811,6 +8857,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix
index 32a6decd73c..16728724401 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1423,6 +1425,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1725,6 +1728,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2131,6 +2135,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2271,6 +2276,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2294,6 +2300,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2412,6 +2419,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2528,6 +2536,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2957,6 +2966,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2972,6 +2982,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3052,6 +3063,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3114,6 +3126,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3432,6 +3445,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3461,6 +3475,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3527,9 +3542,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3872,6 +3889,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3946,6 +3964,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4929,6 +4949,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4989,6 +5010,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5008,6 +5030,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5034,6 +5057,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5156,6 +5180,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5609,6 +5634,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5870,6 +5896,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -6129,6 +6156,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6170,6 +6198,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6219,6 +6248,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6233,6 +6263,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6334,6 +6365,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6351,6 +6383,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6410,6 +6443,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6666,6 +6700,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6769,6 +6804,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6863,6 +6899,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7062,6 +7099,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7436,6 +7474,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7578,6 +7617,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7645,6 +7685,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7667,6 +7708,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7811,6 +7853,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7946,6 +7989,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8149,6 +8193,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8218,6 +8263,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8263,6 +8309,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8422,6 +8469,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8738,6 +8786,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix
index e0ada6ea378..497910db38e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1423,6 +1425,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1725,6 +1728,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2131,6 +2135,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2271,6 +2276,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2294,6 +2300,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2412,6 +2419,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2528,6 +2536,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2957,6 +2966,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2972,6 +2982,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3052,6 +3063,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3114,6 +3126,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3432,6 +3445,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3461,6 +3475,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3527,9 +3542,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3872,6 +3889,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3946,6 +3964,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4929,6 +4949,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4989,6 +5010,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5008,6 +5030,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5034,6 +5057,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5156,6 +5180,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5609,6 +5634,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5870,6 +5896,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -6129,6 +6156,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6170,6 +6198,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6219,6 +6248,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6233,6 +6263,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6334,6 +6365,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6351,6 +6383,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6410,6 +6443,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6666,6 +6700,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6768,6 +6803,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6862,6 +6898,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7061,6 +7098,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7435,6 +7473,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7577,6 +7616,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7644,6 +7684,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7666,6 +7707,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7810,6 +7852,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7945,6 +7988,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8148,6 +8192,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8217,6 +8262,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8262,6 +8308,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8421,6 +8468,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8737,6 +8785,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix
index 6620cd55c72..37a0a9f4654 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1423,6 +1425,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1725,6 +1728,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2131,6 +2135,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2271,6 +2276,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2294,6 +2300,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2412,6 +2419,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2528,6 +2536,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2957,6 +2966,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2972,6 +2982,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3052,6 +3063,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3114,6 +3126,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3432,6 +3445,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3461,6 +3475,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3527,9 +3542,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3872,6 +3889,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3946,6 +3964,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4928,6 +4948,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4988,6 +5009,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5007,6 +5029,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5033,6 +5056,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5155,6 +5179,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5608,6 +5633,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5869,6 +5895,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -6128,6 +6155,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6169,6 +6197,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6218,6 +6247,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6232,6 +6262,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6333,6 +6364,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6350,6 +6382,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6409,6 +6442,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6665,6 +6699,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6767,6 +6802,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6861,6 +6897,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7060,6 +7097,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7434,6 +7472,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7576,6 +7615,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7643,6 +7683,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7665,6 +7706,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7809,6 +7851,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7944,6 +7987,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8147,6 +8191,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8216,6 +8261,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8261,6 +8307,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8420,6 +8467,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8736,6 +8784,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix
index a44268a4474..a1b6ff86b10 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix
@@ -673,6 +673,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1103,6 +1104,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1429,6 +1431,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1735,6 +1738,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2144,6 +2148,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2285,6 +2290,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2308,6 +2314,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2427,6 +2434,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2543,6 +2551,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2976,6 +2985,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2991,6 +3001,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3073,6 +3084,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3136,6 +3148,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3459,6 +3472,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3488,6 +3502,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3555,9 +3570,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3903,6 +3920,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3977,6 +3995,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4965,6 +4985,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5025,6 +5046,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5044,6 +5066,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5070,6 +5093,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5195,6 +5219,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5650,6 +5675,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6174,6 +6200,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6215,6 +6242,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6265,6 +6293,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6279,6 +6308,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6380,6 +6410,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6398,6 +6429,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6457,6 +6489,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6716,6 +6749,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6819,6 +6853,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6913,6 +6948,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7113,6 +7149,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7491,6 +7528,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7702,6 +7740,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7724,6 +7763,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7870,6 +7910,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8012,6 +8053,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8218,6 +8260,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8287,6 +8330,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_3";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8332,6 +8376,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8493,6 +8538,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8809,6 +8855,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix
index ba79b7ba72b..d37e392c2b0 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix
@@ -673,6 +673,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1103,6 +1104,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1429,6 +1431,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1734,6 +1737,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2143,6 +2147,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_1_3";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2284,6 +2289,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2307,6 +2313,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2426,6 +2433,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2542,6 +2550,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2975,6 +2984,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2990,6 +3000,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3072,6 +3083,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3135,6 +3147,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3458,6 +3471,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3487,6 +3501,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3554,9 +3569,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3902,6 +3919,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3976,6 +3994,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4964,6 +4984,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5024,6 +5045,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5043,6 +5065,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5069,6 +5092,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5194,6 +5218,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5649,6 +5674,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6173,6 +6199,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6214,6 +6241,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6264,6 +6292,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6278,6 +6307,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6379,6 +6409,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6397,6 +6428,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6456,6 +6488,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6714,6 +6747,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6817,6 +6851,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6911,6 +6946,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7111,6 +7147,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7488,6 +7525,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7699,6 +7737,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7721,6 +7760,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7867,6 +7907,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8009,6 +8050,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8215,6 +8257,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8284,6 +8327,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_3";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8329,6 +8373,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8490,6 +8535,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8806,6 +8852,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix
index 6a56682de17..707acc3f9ca 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix
@@ -673,6 +673,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1103,6 +1104,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1429,6 +1431,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1734,6 +1737,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2143,6 +2147,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_5_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2284,6 +2289,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2307,6 +2313,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2425,6 +2432,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2541,6 +2549,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2974,6 +2983,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2989,6 +2999,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3071,6 +3082,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3134,6 +3146,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3457,6 +3470,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3486,6 +3500,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3553,9 +3568,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3901,6 +3918,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3975,6 +3993,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4963,6 +4983,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5023,6 +5044,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5042,6 +5064,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5068,6 +5091,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5193,6 +5217,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5648,6 +5673,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6172,6 +6198,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6213,6 +6240,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6263,6 +6291,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6277,6 +6306,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6378,6 +6408,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6396,6 +6427,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6455,6 +6487,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6713,6 +6746,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6816,6 +6850,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6910,6 +6945,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7110,6 +7146,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7487,6 +7524,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7698,6 +7736,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7720,6 +7759,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7866,6 +7906,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8008,6 +8049,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8214,6 +8256,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8283,6 +8326,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_3";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8328,6 +8372,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8489,6 +8534,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8805,6 +8851,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix
index 718c30f3c89..7db196b49d6 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix
@@ -673,6 +673,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1101,6 +1102,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1427,6 +1429,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1731,6 +1734,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2140,6 +2144,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_5_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2281,6 +2286,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2304,6 +2310,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2422,6 +2429,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2538,6 +2546,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2971,6 +2980,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2986,6 +2996,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3068,6 +3079,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3131,6 +3143,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3454,6 +3467,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3483,6 +3497,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3550,9 +3565,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3896,6 +3913,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3970,6 +3988,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4958,6 +4978,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5018,6 +5039,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5037,6 +5059,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5063,6 +5086,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5188,6 +5212,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5643,6 +5668,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6166,6 +6192,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6207,6 +6234,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6257,6 +6285,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6271,6 +6300,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6372,6 +6402,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6390,6 +6421,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6449,6 +6481,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6707,6 +6740,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6810,6 +6844,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6904,6 +6939,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7104,6 +7140,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7481,6 +7518,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7692,6 +7730,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7714,6 +7753,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7860,6 +7900,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8002,6 +8043,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8208,6 +8250,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8277,6 +8320,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_3";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8322,6 +8366,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8481,6 +8526,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8797,6 +8843,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix
index 77112a4f118..5947082d54f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1100,6 +1101,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1426,6 +1428,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1730,6 +1733,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2139,6 +2143,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_5_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2280,6 +2285,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2303,6 +2309,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2421,6 +2428,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2537,6 +2545,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2970,6 +2979,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2985,6 +2995,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3067,6 +3078,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3130,6 +3142,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3453,6 +3466,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3482,6 +3496,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3549,9 +3564,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3895,6 +3912,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3969,6 +3987,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4957,6 +4977,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5017,6 +5038,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5036,6 +5058,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5062,6 +5085,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5187,6 +5211,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5642,6 +5667,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6166,6 +6192,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6207,6 +6234,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6257,6 +6285,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6271,6 +6300,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6372,6 +6402,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = dontDistribute super."optparse-simple";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6390,6 +6421,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6449,6 +6481,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6707,6 +6740,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6810,6 +6844,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6904,6 +6939,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7104,6 +7140,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7481,6 +7518,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7692,6 +7730,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7714,6 +7753,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-server" = doDistribute super."snap-server_0_9_5_0";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
@@ -7860,6 +7900,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -8002,6 +8043,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8208,6 +8250,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8277,6 +8320,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_3";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8322,6 +8366,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8481,6 +8526,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8797,6 +8843,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix
index 153aa7dad0d..a58fe3f0a6e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1425,6 +1427,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1729,6 +1732,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2138,6 +2142,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2279,6 +2284,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2302,6 +2308,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2420,6 +2427,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2536,6 +2544,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2969,6 +2978,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2984,6 +2994,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3066,6 +3077,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3129,6 +3141,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3451,6 +3464,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3480,6 +3494,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3547,9 +3562,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3893,6 +3910,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3967,6 +3985,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4955,6 +4975,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5015,6 +5036,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5034,6 +5056,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5060,6 +5083,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5185,6 +5209,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5640,6 +5665,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6164,6 +6190,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6205,6 +6232,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6255,6 +6283,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6269,6 +6298,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6370,6 +6400,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = doDistribute super."optparse-simple_0_0_2";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6388,6 +6419,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6447,6 +6479,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6705,6 +6738,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6808,6 +6842,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6902,6 +6937,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7102,6 +7138,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7478,6 +7515,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7689,6 +7727,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7711,6 +7750,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7856,6 +7896,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7996,6 +8037,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8202,6 +8244,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8271,6 +8314,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_3";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8316,6 +8360,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8475,6 +8520,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8791,6 +8837,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix
index 24d6823fe67..cdcf8d53afc 100644
--- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix
@@ -672,6 +672,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1099,6 +1100,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1425,6 +1427,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1727,6 +1730,7 @@ self: super: {
"bitcoin-api" = dontDistribute super."bitcoin-api";
"bitcoin-api-extra" = dontDistribute super."bitcoin-api-extra";
"bitcoin-block" = dontDistribute super."bitcoin-block";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitcoin-script" = dontDistribute super."bitcoin-script";
"bitcoin-tx" = dontDistribute super."bitcoin-tx";
@@ -2136,6 +2140,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_4_6_0";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2277,6 +2282,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2300,6 +2306,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2418,6 +2425,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_2";
"cryptonite" = dontDistribute super."cryptonite";
@@ -2534,6 +2542,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-hash" = dontDistribute super."data-hash";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
@@ -2966,6 +2975,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2981,6 +2991,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_0_1";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -3062,6 +3073,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -3125,6 +3137,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3447,6 +3460,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3476,6 +3490,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3543,9 +3558,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3889,6 +3906,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3963,6 +3981,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4949,6 +4969,7 @@ self: super: {
"ihaskell-rlangqq" = dontDistribute super."ihaskell-rlangqq";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -5009,6 +5030,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -5028,6 +5050,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-perl6" = doDistribute super."interpolatedstring-perl6_0_9_0";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
@@ -5054,6 +5077,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = dontDistribute super."ip6addr";
"ipatch" = dontDistribute super."ipatch";
@@ -5179,6 +5203,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5633,6 +5658,7 @@ self: super: {
"ltext" = dontDistribute super."ltext";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -6157,6 +6183,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_5";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6198,6 +6225,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6248,6 +6276,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6262,6 +6291,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6363,6 +6393,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"optparse-simple" = doDistribute super."optparse-simple_0_0_2";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
@@ -6381,6 +6412,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6440,6 +6472,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6698,6 +6731,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6801,6 +6835,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6895,6 +6930,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = dontDistribute super."purescript";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -7095,6 +7131,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7471,6 +7508,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_2_2";
@@ -7682,6 +7720,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_1_3";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail" = dontDistribute super."smtp-mail";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
@@ -7704,6 +7743,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7849,6 +7889,7 @@ self: super: {
"srcloc" = doDistribute super."srcloc_0_4_1";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7987,6 +8028,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -8191,6 +8233,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8260,6 +8303,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_3";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8305,6 +8349,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8464,6 +8509,7 @@ self: super: {
"tuples-homogenous-h98" = dontDistribute super."tuples-homogenous-h98";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_0_2";
@@ -8780,6 +8826,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix
index 96c627d8488..fc40fef0c59 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix
@@ -662,6 +662,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1012,7 +1013,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1079,6 +1079,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1390,6 +1391,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1684,6 +1686,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2079,6 +2082,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2217,6 +2221,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2239,6 +2244,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2356,6 +2362,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2472,6 +2479,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2600,6 +2608,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2868,6 +2877,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2888,6 +2898,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2903,6 +2914,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2982,6 +2994,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2993,6 +3006,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3041,6 +3055,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3352,6 +3367,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3381,6 +3397,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3447,9 +3464,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3789,6 +3808,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3860,6 +3880,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4295,15 +4317,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4824,6 +4843,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4883,6 +4903,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4902,6 +4923,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4927,6 +4949,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5045,6 +5068,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5478,6 +5502,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5732,6 +5757,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5986,6 +6012,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6024,6 +6051,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6072,6 +6100,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6086,6 +6115,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6184,6 +6214,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6201,6 +6232,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6259,6 +6291,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6506,6 +6539,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6607,6 +6641,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6700,6 +6735,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_2_0";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6882,6 +6918,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6897,6 +6934,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7271,6 +7309,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4";
@@ -7408,6 +7447,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7475,6 +7515,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7496,6 +7537,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7640,6 +7682,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7767,6 +7810,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7969,6 +8013,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8037,6 +8082,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8080,6 +8126,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8233,6 +8280,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_1";
@@ -8544,6 +8592,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix
index 3613b6eb41e..46ae50720be 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix
@@ -662,6 +662,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1012,7 +1013,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1079,6 +1079,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1389,6 +1390,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1683,6 +1685,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2078,6 +2081,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2216,6 +2220,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2238,6 +2243,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2355,6 +2361,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2471,6 +2478,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2599,6 +2607,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2867,6 +2876,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2887,6 +2897,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2902,6 +2913,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2981,6 +2993,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2992,6 +3005,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3040,6 +3054,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3350,6 +3365,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3379,6 +3395,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3445,9 +3462,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3787,6 +3806,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3858,6 +3878,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4293,15 +4315,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4822,6 +4841,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4881,6 +4901,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4900,6 +4921,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4925,6 +4947,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5043,6 +5066,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5476,6 +5500,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5729,6 +5754,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5983,6 +6009,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6021,6 +6048,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6069,6 +6097,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6083,6 +6112,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6181,6 +6211,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6198,6 +6229,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6256,6 +6288,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6502,6 +6535,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6603,6 +6637,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6696,6 +6731,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_3_0";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6878,6 +6914,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6893,6 +6930,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7266,6 +7304,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4";
@@ -7403,6 +7442,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7470,6 +7510,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7491,6 +7532,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7635,6 +7677,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7762,6 +7805,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7964,6 +8008,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8032,6 +8077,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8075,6 +8121,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8228,6 +8275,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_1";
@@ -8538,6 +8586,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix
index a570288bbf2..acebcd7cb9f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -659,6 +660,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1009,7 +1011,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1076,6 +1077,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1384,6 +1386,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1675,6 +1678,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2068,6 +2072,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2206,6 +2211,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2228,6 +2234,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2344,6 +2351,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2460,6 +2468,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2588,6 +2597,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2853,6 +2863,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2873,6 +2884,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2888,6 +2900,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2967,6 +2980,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2978,6 +2992,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3026,6 +3041,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3334,6 +3350,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3363,6 +3380,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3428,9 +3446,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3768,6 +3788,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3839,6 +3860,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4272,15 +4295,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4797,6 +4817,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4856,6 +4877,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4875,6 +4897,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4900,6 +4923,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5018,6 +5042,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5447,6 +5472,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5699,6 +5725,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_14";
@@ -5951,6 +5978,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
@@ -5988,6 +6016,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6036,6 +6065,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6050,6 +6080,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6147,6 +6178,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6164,6 +6196,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6222,6 +6255,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6466,6 +6500,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6563,6 +6598,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6656,6 +6692,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6837,6 +6874,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6852,6 +6890,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6871,6 +6910,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7224,6 +7264,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7361,6 +7402,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7428,6 +7470,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7448,6 +7491,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7590,6 +7634,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7716,6 +7761,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7915,6 +7961,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7982,6 +8029,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4_1";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8025,6 +8073,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8177,6 +8226,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_2";
@@ -8485,6 +8535,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix
index e48f30b3afb..794facdfce3 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -659,6 +660,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1009,7 +1011,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1076,6 +1077,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1384,6 +1386,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1675,6 +1678,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2067,6 +2071,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2205,6 +2210,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2227,6 +2233,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2343,6 +2350,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2459,6 +2467,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2587,6 +2596,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2852,6 +2862,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2872,6 +2883,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2887,6 +2899,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2966,6 +2979,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2977,6 +2991,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3024,6 +3039,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3332,6 +3348,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3361,6 +3378,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3426,9 +3444,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3766,6 +3786,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3837,6 +3858,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4270,15 +4293,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4795,6 +4815,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4854,6 +4875,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4873,6 +4895,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4898,6 +4921,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5016,6 +5040,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5445,6 +5470,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5697,6 +5723,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_14";
@@ -5949,6 +5976,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
@@ -5986,6 +6014,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6034,6 +6063,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6048,6 +6078,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6145,6 +6176,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6162,6 +6194,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6220,6 +6253,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6463,6 +6497,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6560,6 +6595,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6653,6 +6689,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6834,6 +6871,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6849,6 +6887,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6868,6 +6907,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7221,6 +7261,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7358,6 +7399,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7425,6 +7467,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7445,6 +7488,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7587,6 +7631,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7713,6 +7758,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7912,6 +7958,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7979,6 +8026,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4_1";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8022,6 +8070,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8174,6 +8223,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_2";
@@ -8482,6 +8532,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix
index 95e073eb8ad..d54bb374abe 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -659,6 +660,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1009,7 +1011,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1076,6 +1077,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1384,6 +1386,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1675,6 +1678,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2066,6 +2070,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2204,6 +2209,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2226,6 +2232,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2342,6 +2349,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2458,6 +2466,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2586,6 +2595,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2851,6 +2861,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2871,6 +2882,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2886,6 +2898,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2965,6 +2978,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2976,6 +2990,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3023,6 +3038,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3331,6 +3347,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3360,6 +3377,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3425,9 +3443,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3764,6 +3784,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3835,6 +3856,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4268,15 +4291,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4793,6 +4813,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4852,6 +4873,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4871,6 +4893,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4896,6 +4919,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5014,6 +5038,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5443,6 +5468,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5695,6 +5721,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
@@ -5947,6 +5974,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
@@ -5984,6 +6012,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6032,6 +6061,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6046,6 +6076,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6143,6 +6174,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6160,6 +6192,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6218,6 +6251,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6460,6 +6494,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6557,6 +6592,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6650,6 +6686,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_5_3";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6831,6 +6868,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6846,6 +6884,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6865,6 +6904,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7218,6 +7258,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7355,6 +7396,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7422,6 +7464,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7442,6 +7485,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7584,6 +7628,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7710,6 +7755,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7908,6 +7954,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7974,6 +8021,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8017,6 +8065,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8169,6 +8218,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_2";
@@ -8477,6 +8527,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix
index 0bba76b79b3..0b3f152c82f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -659,6 +660,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1009,7 +1011,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1076,6 +1077,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1384,6 +1386,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1675,6 +1678,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2066,6 +2070,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2204,6 +2209,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2226,6 +2232,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2342,6 +2349,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2458,6 +2466,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2586,6 +2595,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2851,6 +2861,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2871,6 +2882,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2886,6 +2898,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2965,6 +2978,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2976,6 +2990,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3023,6 +3038,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3331,6 +3347,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3360,6 +3377,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3425,9 +3443,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3764,6 +3784,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3835,6 +3856,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4267,15 +4290,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4792,6 +4812,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4851,6 +4872,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4870,6 +4892,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4895,6 +4918,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5013,6 +5037,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5441,6 +5466,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5693,6 +5719,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
@@ -5945,6 +5972,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
@@ -5982,6 +6010,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6030,6 +6059,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6044,6 +6074,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6141,6 +6172,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6158,6 +6190,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6216,6 +6249,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6457,6 +6491,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6554,6 +6589,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6647,6 +6683,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_5_4";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6828,6 +6865,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6843,6 +6881,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6862,6 +6901,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7215,6 +7255,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7352,6 +7393,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7419,6 +7461,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7439,6 +7482,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7581,6 +7625,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7707,6 +7752,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7905,6 +7951,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7971,6 +8018,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8014,6 +8062,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8166,6 +8215,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_2";
@@ -8474,6 +8524,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix
index c3766276b0c..2885540628a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -659,6 +660,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1009,7 +1011,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1075,6 +1076,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1383,6 +1385,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1674,6 +1677,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2064,6 +2068,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2202,6 +2207,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2224,6 +2230,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2339,6 +2346,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2455,6 +2463,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2583,6 +2592,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2848,6 +2858,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2868,6 +2879,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2883,6 +2895,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2962,6 +2975,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2973,6 +2987,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3020,6 +3035,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3328,6 +3344,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3357,6 +3374,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3422,9 +3440,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3761,6 +3781,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3832,6 +3853,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4264,15 +4287,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4788,6 +4808,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4847,6 +4868,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4866,6 +4888,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4891,6 +4914,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5009,6 +5033,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5437,6 +5462,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5689,6 +5715,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
@@ -5941,6 +5968,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
@@ -5978,6 +6006,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6026,6 +6055,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6040,6 +6070,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6137,6 +6168,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6154,6 +6186,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6212,6 +6245,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6453,6 +6487,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6550,6 +6585,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6643,6 +6679,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_5_4";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6824,6 +6861,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6839,6 +6877,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6858,6 +6897,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7211,6 +7251,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7348,6 +7389,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7415,6 +7457,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7435,6 +7478,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7577,6 +7621,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7703,6 +7748,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7901,6 +7947,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7967,6 +8014,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8010,6 +8058,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8162,6 +8211,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_3";
@@ -8470,6 +8520,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix
index 1476133f99b..d494bb868fa 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -659,6 +660,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1009,7 +1011,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1075,6 +1076,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1383,6 +1385,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1674,6 +1677,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2064,6 +2068,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2202,6 +2207,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2224,6 +2230,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2339,6 +2346,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2455,6 +2463,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2583,6 +2592,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2848,6 +2858,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2868,6 +2879,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2883,6 +2895,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2962,6 +2975,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2973,6 +2987,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3020,6 +3035,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3328,6 +3344,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3357,6 +3374,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3422,9 +3440,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3761,6 +3781,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3832,6 +3853,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4263,15 +4286,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4785,6 +4805,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4844,6 +4865,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4863,6 +4885,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4888,6 +4911,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5006,6 +5030,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5434,6 +5459,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5686,6 +5712,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
@@ -5938,6 +5965,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
@@ -5975,6 +6003,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6023,6 +6052,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6037,6 +6067,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6134,6 +6165,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6151,6 +6183,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6209,6 +6242,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6450,6 +6484,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6547,6 +6582,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6640,6 +6676,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6821,6 +6858,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6836,6 +6874,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6855,6 +6894,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7208,6 +7248,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7344,6 +7385,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7411,6 +7453,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7431,6 +7474,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7573,6 +7617,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7699,6 +7744,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7897,6 +7943,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7963,6 +8010,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8006,6 +8054,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8158,6 +8207,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_3";
@@ -8466,6 +8516,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix
index f3651a2cee2..25a09a03375 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -658,6 +659,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1008,7 +1010,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1074,6 +1075,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1382,6 +1384,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1673,6 +1676,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2063,6 +2067,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2201,6 +2206,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2223,6 +2229,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2338,6 +2345,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2454,6 +2462,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2582,6 +2591,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2847,6 +2857,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2867,6 +2878,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2882,6 +2894,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2960,6 +2973,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2971,6 +2985,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3018,6 +3033,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3326,6 +3342,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3355,6 +3372,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3420,9 +3438,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3758,6 +3778,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3829,6 +3850,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4260,15 +4283,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4782,6 +4802,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4841,6 +4862,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4860,6 +4882,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4885,6 +4908,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5003,6 +5027,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5430,6 +5455,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5681,6 +5707,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
@@ -5933,6 +5960,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
@@ -5970,6 +5998,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6018,6 +6047,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6032,6 +6062,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6129,6 +6160,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6146,6 +6178,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6204,6 +6237,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6445,6 +6479,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6541,6 +6576,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6634,6 +6670,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6815,6 +6852,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6829,6 +6867,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6848,6 +6887,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7201,6 +7241,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7337,6 +7378,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7404,6 +7446,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7424,6 +7467,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7566,6 +7610,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7692,6 +7737,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7888,6 +7934,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7954,6 +8001,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7997,6 +8045,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8148,6 +8197,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_3";
@@ -8456,6 +8506,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix
index 275e5e5d2e7..fea8a4e97ce 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -658,6 +659,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1008,7 +1010,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1074,6 +1075,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1381,6 +1383,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1672,6 +1675,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2062,6 +2066,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2200,6 +2205,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2222,6 +2228,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2337,6 +2344,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2453,6 +2461,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2581,6 +2590,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2846,6 +2856,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2866,6 +2877,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2881,6 +2893,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2959,6 +2972,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2970,6 +2984,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3017,6 +3032,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3325,6 +3341,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3354,6 +3371,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3419,9 +3437,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3757,6 +3777,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3827,6 +3848,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4258,15 +4281,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4780,6 +4800,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4838,6 +4859,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4857,6 +4879,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4882,6 +4905,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5000,6 +5024,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5426,6 +5451,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5677,6 +5703,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_15";
@@ -5928,6 +5955,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
@@ -5965,6 +5993,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6013,6 +6042,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6027,6 +6057,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6124,6 +6155,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6141,6 +6173,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6199,6 +6232,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6440,6 +6474,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6536,6 +6571,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6629,6 +6665,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6810,6 +6847,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6824,6 +6862,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6843,6 +6882,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7196,6 +7236,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7332,6 +7373,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7399,6 +7441,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7419,6 +7462,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7561,6 +7605,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7687,6 +7732,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7883,6 +7929,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7949,6 +7996,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7992,6 +8040,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8143,6 +8192,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_3";
@@ -8451,6 +8501,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix
index e9f3015c0b9..908bf7591a0 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -658,6 +659,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1008,7 +1010,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1074,6 +1075,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1381,6 +1383,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1672,6 +1675,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2061,6 +2065,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2199,6 +2204,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2221,6 +2227,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2336,6 +2343,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2452,6 +2460,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2580,6 +2589,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2845,6 +2855,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2865,6 +2876,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2880,6 +2892,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2958,6 +2971,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2969,6 +2983,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3016,6 +3031,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3324,6 +3340,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3353,6 +3370,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3418,9 +3436,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3753,6 +3773,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3823,6 +3844,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4254,15 +4277,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4775,6 +4795,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4833,6 +4854,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4852,6 +4874,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4877,6 +4900,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4995,6 +5019,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5421,6 +5446,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5672,6 +5698,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
@@ -5923,6 +5950,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
@@ -5960,6 +5988,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6008,6 +6037,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6022,6 +6052,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6119,6 +6150,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6136,6 +6168,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6193,6 +6226,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6434,6 +6468,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6530,6 +6565,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6623,6 +6659,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6804,6 +6841,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6818,6 +6856,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6837,6 +6876,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7190,6 +7230,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7326,6 +7367,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7393,6 +7435,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7413,6 +7456,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7555,6 +7599,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7681,6 +7726,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7877,6 +7923,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7943,6 +7990,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7986,6 +8034,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8137,6 +8186,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_3";
@@ -8445,6 +8495,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix
index aa17b0ea8f7..ce1af0ad681 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -658,6 +659,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1008,7 +1010,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1074,6 +1075,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1381,6 +1383,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1671,6 +1674,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1772,6 +1776,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -2058,6 +2063,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2195,6 +2201,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2217,6 +2224,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2332,6 +2340,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2448,6 +2457,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2576,6 +2586,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2841,6 +2852,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2861,6 +2873,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2876,6 +2889,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2954,6 +2968,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2965,6 +2980,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3012,6 +3028,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3320,6 +3337,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3349,6 +3367,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3414,9 +3433,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3749,6 +3770,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3819,6 +3841,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4250,15 +4274,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4769,6 +4790,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4827,6 +4849,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4846,6 +4869,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4871,6 +4895,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4989,6 +5014,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5413,6 +5439,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5664,6 +5691,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
@@ -5914,6 +5942,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
@@ -5951,6 +5980,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5999,6 +6029,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6013,6 +6044,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6110,6 +6142,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6127,6 +6160,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6184,6 +6218,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6425,6 +6460,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6521,6 +6557,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6614,6 +6651,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6795,6 +6833,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6809,6 +6848,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6828,6 +6868,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7181,6 +7222,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7317,6 +7359,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7384,6 +7427,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7404,6 +7448,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7545,6 +7590,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7671,6 +7717,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7867,6 +7914,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7933,6 +7981,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7976,6 +8025,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8127,6 +8177,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_4";
@@ -8435,6 +8486,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix
index 7d5319c0c64..ba7867f1101 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix
@@ -661,6 +661,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1011,7 +1012,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1078,6 +1078,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1387,6 +1388,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1681,6 +1683,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2076,6 +2079,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2214,6 +2218,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2236,6 +2241,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2353,6 +2359,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2469,6 +2476,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2597,6 +2605,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2864,6 +2873,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2884,6 +2894,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2899,6 +2910,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2978,6 +2990,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2989,6 +3002,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3037,6 +3051,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3347,6 +3362,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3376,6 +3392,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3441,9 +3458,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3783,6 +3802,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3854,6 +3874,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4289,15 +4311,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4818,6 +4837,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4877,6 +4897,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4896,6 +4917,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4921,6 +4943,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5039,6 +5062,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5471,6 +5495,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5724,6 +5749,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5978,6 +6004,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6016,6 +6043,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6064,6 +6092,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6078,6 +6107,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6176,6 +6206,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6193,6 +6224,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6251,6 +6283,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6497,6 +6530,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6598,6 +6632,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6691,6 +6726,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_3_0";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6872,6 +6908,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6887,6 +6924,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -7260,6 +7298,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4";
@@ -7397,6 +7436,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7464,6 +7504,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7484,6 +7525,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7628,6 +7670,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7755,6 +7798,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7957,6 +8001,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8025,6 +8070,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8068,6 +8114,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8221,6 +8268,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_1";
@@ -8531,6 +8579,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix
index 89cc6684d9b..20dde1cb798 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix
@@ -491,6 +491,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -657,6 +658,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1007,7 +1009,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1073,6 +1074,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1380,6 +1382,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1670,6 +1673,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1771,6 +1775,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -2057,6 +2062,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2194,6 +2200,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2216,6 +2223,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2331,6 +2339,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2447,6 +2456,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2575,6 +2585,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2840,6 +2851,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2860,6 +2872,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2875,6 +2888,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2953,6 +2967,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2964,6 +2979,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3011,6 +3027,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3319,6 +3336,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3348,6 +3366,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3413,9 +3432,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3748,6 +3769,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3818,6 +3840,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4249,15 +4273,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4768,6 +4789,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4826,6 +4848,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4845,6 +4868,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4870,6 +4894,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4988,6 +5013,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5412,6 +5438,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5663,6 +5690,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
@@ -5913,6 +5941,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
@@ -5950,6 +5979,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5998,6 +6028,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6012,6 +6043,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6109,6 +6141,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6126,6 +6159,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6183,6 +6217,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6424,6 +6459,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6520,6 +6556,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6613,6 +6650,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6794,6 +6832,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6808,6 +6847,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6826,6 +6866,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7179,6 +7220,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_5";
@@ -7315,6 +7357,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7382,6 +7425,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7402,6 +7446,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7543,6 +7588,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7668,6 +7714,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7864,6 +7911,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7930,6 +7978,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7973,6 +8022,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8124,6 +8174,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_4";
@@ -8432,6 +8483,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix
index 72e3391f743..3d21e531cee 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix
@@ -491,6 +491,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -657,6 +658,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1007,7 +1009,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1073,6 +1074,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1380,6 +1382,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1670,6 +1673,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1771,6 +1775,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -2057,6 +2062,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2193,6 +2199,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2215,6 +2222,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2330,6 +2338,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2446,6 +2455,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2574,6 +2584,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2839,6 +2850,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2859,6 +2871,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2874,6 +2887,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2952,6 +2966,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2963,6 +2978,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3010,6 +3026,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3316,6 +3333,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3345,6 +3363,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3410,9 +3429,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3745,6 +3766,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3815,6 +3837,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4246,15 +4270,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4763,6 +4784,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4821,6 +4843,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4840,6 +4863,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4865,6 +4889,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4983,6 +5008,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5407,6 +5433,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5658,6 +5685,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
@@ -5907,6 +5935,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
@@ -5944,6 +5973,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5992,6 +6022,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6006,6 +6037,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6103,6 +6135,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6120,6 +6153,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6176,6 +6210,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6416,6 +6451,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6512,6 +6548,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6605,6 +6642,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6786,6 +6824,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6800,6 +6839,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6818,6 +6858,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7169,6 +7210,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -7302,6 +7344,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7368,6 +7411,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7388,6 +7432,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7529,6 +7574,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7654,6 +7700,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7850,6 +7897,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7916,6 +7964,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7959,6 +8008,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8110,6 +8160,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -8418,6 +8469,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8503,6 +8555,7 @@ self: super: {
"wai-throttler" = dontDistribute super."wai-throttler";
"wai-transformers" = dontDistribute super."wai-transformers";
"wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8859,6 +8912,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = dontDistribute super."zim-parser";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix
index eecb89f1f3a..28cc821235f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix
@@ -491,6 +491,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -657,6 +658,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1007,7 +1009,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1073,6 +1074,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1380,6 +1382,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1670,6 +1673,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1771,6 +1775,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -2057,6 +2062,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2193,6 +2199,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2215,6 +2222,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2330,6 +2338,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2446,6 +2455,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2574,6 +2584,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2839,6 +2850,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2859,6 +2871,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2874,6 +2887,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2952,6 +2966,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2963,6 +2978,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exherbo-cabal" = dontDistribute super."exherbo-cabal";
@@ -3010,6 +3026,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3315,6 +3332,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3344,6 +3362,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3409,9 +3428,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3744,6 +3765,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3814,6 +3836,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4244,15 +4268,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4760,6 +4781,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4817,6 +4839,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4836,6 +4859,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4860,6 +4884,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4978,6 +5003,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5402,6 +5428,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5653,6 +5680,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
@@ -5902,6 +5930,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
@@ -5939,6 +5968,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5987,6 +6017,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6001,6 +6032,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6098,6 +6130,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6115,6 +6148,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6171,6 +6205,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6411,6 +6446,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6507,6 +6543,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6600,6 +6637,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6781,6 +6819,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6795,6 +6834,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6813,6 +6853,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7164,6 +7205,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -7297,6 +7339,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7363,6 +7406,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7383,6 +7427,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7524,6 +7569,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7649,6 +7695,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7845,6 +7892,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7911,6 +7959,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7954,6 +8003,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8105,6 +8155,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -8413,6 +8464,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8498,6 +8550,7 @@ self: super: {
"wai-throttler" = dontDistribute super."wai-throttler";
"wai-transformers" = dontDistribute super."wai-transformers";
"wai-util" = dontDistribute super."wai-util";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8854,6 +8907,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = dontDistribute super."zim-parser";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix
index 7ec5e6f8c5c..6136c76adb2 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix
@@ -661,6 +661,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1011,7 +1012,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1078,6 +1078,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1387,6 +1388,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1681,6 +1683,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2076,6 +2079,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2214,6 +2218,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2236,6 +2241,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2353,6 +2359,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2469,6 +2476,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2597,6 +2605,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2864,6 +2873,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2884,6 +2894,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2899,6 +2910,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2978,6 +2990,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2989,6 +3002,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3037,6 +3051,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3346,6 +3361,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3375,6 +3391,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3440,9 +3457,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3782,6 +3801,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3853,6 +3873,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4288,15 +4310,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4816,6 +4835,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4875,6 +4895,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4894,6 +4915,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4919,6 +4941,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5037,6 +5060,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5469,6 +5493,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5722,6 +5747,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5976,6 +6002,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6014,6 +6041,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6062,6 +6090,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6076,6 +6105,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6174,6 +6204,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6191,6 +6222,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6249,6 +6281,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6495,6 +6528,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6596,6 +6630,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6689,6 +6724,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6870,6 +6906,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6885,6 +6922,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6904,6 +6942,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7257,6 +7296,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_2";
@@ -7394,6 +7434,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7461,6 +7502,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7481,6 +7523,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7624,6 +7667,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7751,6 +7795,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7953,6 +7998,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8021,6 +8067,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8064,6 +8111,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8217,6 +8265,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_1";
@@ -8526,6 +8575,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix
index 75925456656..294a0c0fc3f 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix
@@ -661,6 +661,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1011,7 +1012,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1078,6 +1078,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1387,6 +1388,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1681,6 +1683,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2076,6 +2079,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2214,6 +2218,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2236,6 +2241,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2353,6 +2359,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2469,6 +2476,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2597,6 +2605,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2864,6 +2873,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2884,6 +2894,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2899,6 +2910,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2978,6 +2990,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2989,6 +3002,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3037,6 +3051,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3346,6 +3361,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3375,6 +3391,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3440,9 +3457,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3782,6 +3801,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3853,6 +3873,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4288,15 +4310,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4816,6 +4835,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4875,6 +4895,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4894,6 +4915,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4919,6 +4941,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5037,6 +5060,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5469,6 +5493,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5722,6 +5747,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5976,6 +6002,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6014,6 +6041,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6062,6 +6090,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6076,6 +6105,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6174,6 +6204,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6191,6 +6222,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6249,6 +6281,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6495,6 +6528,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6596,6 +6630,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6689,6 +6724,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6870,6 +6906,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6885,6 +6922,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6904,6 +6942,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7257,6 +7296,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_2";
@@ -7394,6 +7434,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7461,6 +7502,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7481,6 +7523,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7624,6 +7667,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7750,6 +7794,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7952,6 +7997,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"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";
@@ -8020,6 +8066,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8063,6 +8110,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8216,6 +8264,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_1";
@@ -8525,6 +8574,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix
index db27d282439..6b69cb435cf 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix
@@ -661,6 +661,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1011,7 +1012,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1078,6 +1078,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1386,6 +1387,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1680,6 +1682,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2075,6 +2078,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2213,6 +2217,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2235,6 +2240,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2352,6 +2358,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2468,6 +2475,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2596,6 +2604,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2863,6 +2872,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2883,6 +2893,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2898,6 +2909,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2977,6 +2989,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2988,6 +3001,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3036,6 +3050,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3344,6 +3359,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3373,6 +3389,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3438,9 +3455,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3780,6 +3799,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3851,6 +3871,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4285,15 +4307,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4810,6 +4829,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4869,6 +4889,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4888,6 +4909,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4913,6 +4935,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5031,6 +5054,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5463,6 +5487,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5716,6 +5741,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5969,6 +5995,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6007,6 +6034,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6055,6 +6083,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6069,6 +6098,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6167,6 +6197,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6184,6 +6215,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6242,6 +6274,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6487,6 +6520,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6587,6 +6621,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6680,6 +6715,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6861,6 +6897,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6876,6 +6913,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6895,6 +6933,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7248,6 +7287,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_2";
@@ -7385,6 +7425,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7452,6 +7493,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_0_2";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7472,6 +7514,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7615,6 +7658,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7741,6 +7785,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7941,6 +7986,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -8008,6 +8054,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4_1";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8051,6 +8098,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8204,6 +8252,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_1";
@@ -8513,6 +8562,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix
index e1d11a279de..7bc5b4f1502 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix
@@ -661,6 +661,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1011,7 +1012,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1078,6 +1078,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1386,6 +1387,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1680,6 +1682,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2075,6 +2078,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2213,6 +2217,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2235,6 +2240,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2352,6 +2358,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2468,6 +2475,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2596,6 +2604,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2863,6 +2872,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2883,6 +2893,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2898,6 +2909,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2977,6 +2989,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2988,6 +3001,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3036,6 +3050,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3344,6 +3359,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3373,6 +3389,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3438,9 +3455,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3778,6 +3797,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3849,6 +3869,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4283,15 +4305,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4808,6 +4827,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4867,6 +4887,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4886,6 +4907,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4911,6 +4933,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5029,6 +5052,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5458,6 +5482,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5711,6 +5736,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5964,6 +5990,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -6002,6 +6029,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6050,6 +6078,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6064,6 +6093,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6162,6 +6192,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6179,6 +6210,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6237,6 +6269,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6482,6 +6515,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6582,6 +6616,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6675,6 +6710,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6856,6 +6892,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6871,6 +6908,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6890,6 +6928,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7243,6 +7282,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_2";
@@ -7380,6 +7420,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7447,6 +7488,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7467,6 +7509,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7610,6 +7653,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7736,6 +7780,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7936,6 +7981,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -8003,6 +8049,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4_1";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8046,6 +8093,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8198,6 +8246,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_1";
@@ -8507,6 +8556,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix
index 0db12c698b2..aeea7a13b84 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix
@@ -661,6 +661,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1011,7 +1012,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1078,6 +1078,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1386,6 +1387,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1678,6 +1680,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2073,6 +2076,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2211,6 +2215,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2233,6 +2238,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2349,6 +2355,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_4";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2465,6 +2472,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2593,6 +2601,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2860,6 +2869,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2880,6 +2890,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2895,6 +2906,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2974,6 +2986,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2985,6 +2998,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3033,6 +3047,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3341,6 +3356,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3370,6 +3386,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3435,9 +3452,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3775,6 +3794,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3846,6 +3866,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4279,15 +4301,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4804,6 +4823,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4863,6 +4883,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4882,6 +4903,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4907,6 +4929,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5025,6 +5048,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5454,6 +5478,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5707,6 +5732,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_13_2";
@@ -5960,6 +5986,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -5998,6 +6025,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6046,6 +6074,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6060,6 +6089,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6158,6 +6188,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6175,6 +6206,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6233,6 +6265,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6477,6 +6510,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6576,6 +6610,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6669,6 +6704,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6850,6 +6886,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6865,6 +6902,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6884,6 +6922,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7237,6 +7276,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_4";
@@ -7374,6 +7414,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7441,6 +7482,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7461,6 +7503,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7603,6 +7646,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7729,6 +7773,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7929,6 +7974,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7996,6 +8042,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4_1";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8039,6 +8086,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8191,6 +8239,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_1";
@@ -8500,6 +8549,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix
index 47c13adab0f..bfe31f27ce4 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix
@@ -661,6 +661,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1011,7 +1012,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1078,6 +1078,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1386,6 +1387,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1678,6 +1680,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2071,6 +2074,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2209,6 +2213,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2231,6 +2236,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2347,6 +2353,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2463,6 +2470,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2591,6 +2599,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2857,6 +2866,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2877,6 +2887,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2892,6 +2903,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2971,6 +2983,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2982,6 +2995,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_1";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3030,6 +3044,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3338,6 +3353,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3367,6 +3383,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3432,9 +3449,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3772,6 +3791,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3843,6 +3863,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4276,15 +4298,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4801,6 +4820,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4860,6 +4880,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4879,6 +4900,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4904,6 +4926,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5022,6 +5045,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5451,6 +5475,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5703,6 +5728,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_14";
@@ -5956,6 +5982,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -5994,6 +6021,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6042,6 +6070,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6056,6 +6085,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6154,6 +6184,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6171,6 +6202,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6229,6 +6261,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6473,6 +6506,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6571,6 +6605,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6664,6 +6699,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6845,6 +6881,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6860,6 +6897,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6879,6 +6917,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7232,6 +7271,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_4";
@@ -7369,6 +7409,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7436,6 +7477,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7456,6 +7498,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7598,6 +7641,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7724,6 +7768,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7923,6 +7968,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7990,6 +8036,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4_1";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8033,6 +8080,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8185,6 +8233,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_2";
@@ -8494,6 +8543,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix
index 77c15982b99..32398b4f58e 100644
--- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix
@@ -492,6 +492,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = dontDistribute super."HaRe";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -659,6 +660,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -1009,7 +1011,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-extras" = dontDistribute super."Win32-extras";
@@ -1076,6 +1077,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1384,6 +1386,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = dontDistribute super."ascii-progress";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1675,6 +1678,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -2068,6 +2072,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_5_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2206,6 +2211,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2228,6 +2234,7 @@ self: super: {
"consul-haskell" = doDistribute super."consul-haskell_0_2_1";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2344,6 +2351,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_5";
"cryptonite" = doDistribute super."cryptonite_0_6";
@@ -2460,6 +2468,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2588,6 +2597,7 @@ self: super: {
"dependent-map" = doDistribute super."dependent-map_0_1_1_3";
"dependent-state" = dontDistribute super."dependent-state";
"dependent-sum" = doDistribute super."dependent-sum_0_2_1_0";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2853,6 +2863,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"either-unwrap" = dontDistribute super."either-unwrap";
"eithers" = dontDistribute super."eithers";
"ekg" = dontDistribute super."ekg";
@@ -2873,6 +2884,7 @@ self: super: {
"elm-bridge" = dontDistribute super."elm-bridge";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2888,6 +2900,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2967,6 +2980,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = dontDistribute super."eventstore";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2978,6 +2992,7 @@ self: super: {
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
"exception-monads-tf" = dontDistribute super."exception-monads-tf";
+ "exception-mtl" = doDistribute super."exception-mtl_0_4";
"exception-transformers" = doDistribute super."exception-transformers_0_4_0_2";
"exceptions" = doDistribute super."exceptions_0_8_0_2";
"exhaustive" = doDistribute super."exhaustive_1_1_1";
@@ -3026,6 +3041,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3334,6 +3350,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3363,6 +3380,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3428,9 +3446,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3768,6 +3788,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3839,6 +3860,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4272,15 +4295,12 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
- "hledger" = doDistribute super."hledger_0_26";
"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_26";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
- "hledger-web" = doDistribute super."hledger-web_0_26";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4797,6 +4817,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4856,6 +4877,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4875,6 +4897,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4900,6 +4923,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -5018,6 +5042,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5447,6 +5472,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5699,6 +5725,7 @@ self: super: {
"monad-hash" = dontDistribute super."monad-hash";
"monad-http" = dontDistribute super."monad-http";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_14";
@@ -5952,6 +5979,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-house" = dontDistribute super."network-house";
"network-info" = doDistribute super."network-info_0_2_0_7";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
@@ -5990,6 +6018,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -6038,6 +6067,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -6052,6 +6082,7 @@ self: super: {
"numeric-tools" = dontDistribute super."numeric-tools";
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
+ "numtype" = doDistribute super."numtype_1_1";
"numtype-dk" = dontDistribute super."numtype-dk";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
@@ -6149,6 +6180,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -6166,6 +6198,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6224,6 +6257,7 @@ self: super: {
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
"parseargs" = doDistribute super."parseargs_0_1_5_2";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6468,6 +6502,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6566,6 +6601,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6659,6 +6695,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_4_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6840,6 +6877,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refact" = doDistribute super."refact_0_3_0_1";
@@ -6855,6 +6893,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6874,6 +6913,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-text" = dontDistribute super."regex-tdfa-text";
@@ -7227,6 +7267,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_4";
@@ -7364,6 +7405,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7431,6 +7473,7 @@ self: super: {
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smsaero" = dontDistribute super."smsaero";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7451,6 +7494,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7593,6 +7637,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7719,6 +7764,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7918,6 +7964,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7985,6 +8032,7 @@ self: super: {
"th-context" = dontDistribute super."th-context";
"th-desugar" = doDistribute super."th-desugar_1_5_4_1";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -8028,6 +8076,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -8180,6 +8229,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_2";
@@ -8489,6 +8539,7 @@ self: super: {
"vinyl" = dontDistribute super."vinyl";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix
index 4df8a8d1580..12f5e7e8620 100644
--- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix
@@ -482,6 +482,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = doDistribute super."HaRe_0_8_2_1";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -573,6 +574,7 @@ self: super: {
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -644,6 +646,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -989,7 +992,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1053,6 +1055,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1358,6 +1361,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1639,6 +1643,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1736,6 +1741,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -2015,6 +2021,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2148,6 +2155,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2169,6 +2177,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2283,6 +2292,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_6";
"cryptonite" = doDistribute super."cryptonite_0_10";
@@ -2397,6 +2407,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2522,7 +2533,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2780,6 +2794,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg" = doDistribute super."ekg_0_4_0_8";
"ekg-bosun" = dontDistribute super."ekg-bosun";
@@ -2799,6 +2814,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_1_0_0";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2814,6 +2830,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2891,6 +2908,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_1";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2949,6 +2967,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3248,6 +3267,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3277,6 +3297,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3339,9 +3360,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3583,6 +3606,7 @@ self: super: {
"graphql" = dontDistribute super."graphql";
"graphs" = doDistribute super."graphs_0_6_0_1";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3667,6 +3691,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3735,6 +3760,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4093,6 +4120,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4155,11 +4183,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4645,6 +4676,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4702,6 +4734,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4721,6 +4754,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4744,6 +4778,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4853,6 +4888,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5276,6 +5312,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5518,6 +5555,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
@@ -5760,6 +5798,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5795,6 +5834,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5842,6 +5882,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5856,6 +5897,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5948,6 +5990,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_12_0_0";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5965,6 +6008,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6019,6 +6063,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6245,6 +6290,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6340,6 +6386,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6431,6 +6478,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6606,6 +6654,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6620,6 +6669,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6633,6 +6683,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6975,6 +7026,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -7106,6 +7158,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7169,6 +7222,7 @@ self: super: {
"sme" = dontDistribute super."sme";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7189,6 +7243,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7325,6 +7380,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7448,6 +7504,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7637,6 +7694,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7685,6 +7743,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7700,6 +7759,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7742,6 +7802,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7888,6 +7949,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_4";
@@ -7945,6 +8007,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -8181,6 +8244,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8199,6 +8263,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8258,6 +8323,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8594,6 +8660,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix
index 7349c96cf07..1828851ca0b 100644
--- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix
@@ -482,6 +482,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = doDistribute super."HaRe_0_8_2_2";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -573,6 +574,7 @@ self: super: {
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -644,6 +646,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -989,7 +992,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1053,6 +1055,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1356,6 +1359,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1637,6 +1641,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1734,6 +1739,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -2013,6 +2019,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2146,6 +2153,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2167,6 +2175,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2281,6 +2290,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_6";
"cryptonite" = doDistribute super."cryptonite_0_10";
@@ -2395,6 +2405,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2520,7 +2531,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2777,6 +2791,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg" = doDistribute super."ekg_0_4_0_8";
"ekg-bosun" = dontDistribute super."ekg-bosun";
@@ -2796,6 +2811,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_1_0_0";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2811,6 +2827,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2887,6 +2904,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_1";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2945,6 +2963,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3243,6 +3262,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3272,6 +3292,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3334,9 +3355,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3578,6 +3601,7 @@ self: super: {
"graphql" = dontDistribute super."graphql";
"graphs" = doDistribute super."graphs_0_6_0_1";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3662,6 +3686,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3730,6 +3755,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4087,6 +4114,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4149,11 +4177,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
"hledger-ui" = dontDistribute super."hledger-ui";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4636,6 +4667,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4692,6 +4724,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4711,6 +4744,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4733,6 +4767,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4842,6 +4877,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5263,6 +5299,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5505,6 +5542,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_16";
@@ -5747,6 +5785,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5782,6 +5821,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5829,6 +5869,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5843,6 +5884,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5935,6 +5977,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_12_0_0";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5952,6 +5995,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -6006,6 +6050,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6231,6 +6276,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6326,6 +6372,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6417,6 +6464,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6592,6 +6640,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6606,6 +6655,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6619,6 +6669,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6961,6 +7012,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -7092,6 +7144,7 @@ self: super: {
"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_21";
"simple-server" = dontDistribute super."simple-server";
"simple-session" = dontDistribute super."simple-session";
"simple-sessions" = dontDistribute super."simple-sessions";
@@ -7155,6 +7208,7 @@ self: super: {
"sme" = dontDistribute super."sme";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7175,6 +7229,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7311,6 +7366,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7434,6 +7490,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7623,6 +7680,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7671,6 +7729,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7686,6 +7745,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7728,6 +7788,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7874,6 +7935,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -7931,6 +7993,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -8167,6 +8230,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8185,6 +8249,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8244,6 +8309,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8580,6 +8646,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix
index 1b4193ff04c..1770be9559b 100644
--- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix
@@ -342,6 +342,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -481,6 +482,7 @@ self: super: {
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
"HaRe" = doDistribute super."HaRe_0_8_2_2";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -572,6 +574,7 @@ self: super: {
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -643,6 +646,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -988,7 +992,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1052,6 +1055,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1355,6 +1359,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1636,6 +1641,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1733,6 +1739,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1860,6 +1867,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -2008,6 +2016,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2140,6 +2149,7 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
@@ -2161,6 +2171,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2275,6 +2286,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptol" = doDistribute super."cryptol_2_2_6";
"cryptonite" = doDistribute super."cryptonite_0_10";
@@ -2389,6 +2401,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2513,7 +2526,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2770,6 +2786,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg" = doDistribute super."ekg_0_4_0_8";
"ekg-bosun" = dontDistribute super."ekg-bosun";
@@ -2789,6 +2806,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_1_0_0";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2804,6 +2822,7 @@ self: super: {
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
"email-validate" = doDistribute super."email-validate_2_1_3";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2880,6 +2899,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_1";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2936,6 +2956,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3232,6 +3253,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3261,6 +3283,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3323,9 +3346,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3566,6 +3591,7 @@ self: super: {
"graphql" = dontDistribute super."graphql";
"graphs" = doDistribute super."graphs_0_6_0_1";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3649,6 +3675,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3717,6 +3744,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4070,6 +4099,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4132,10 +4162,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4616,6 +4650,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4671,6 +4706,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4690,6 +4726,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4711,6 +4748,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4820,6 +4858,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5241,6 +5280,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5483,6 +5523,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_17";
@@ -5722,6 +5763,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5757,6 +5799,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5804,6 +5847,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5818,6 +5862,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5910,6 +5955,7 @@ self: super: {
"optparse-applicative" = doDistribute super."optparse-applicative_0_12_0_0";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5927,6 +5973,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5981,6 +6028,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6206,6 +6254,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6298,6 +6347,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6389,6 +6439,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6563,6 +6614,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6577,6 +6629,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6590,6 +6643,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6929,6 +6983,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -7058,6 +7113,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-smt" = dontDistribute super."simple-smt";
@@ -7119,6 +7175,7 @@ self: super: {
"sme" = dontDistribute super."sme";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7139,6 +7196,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7274,6 +7332,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7397,6 +7456,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7586,6 +7646,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7634,6 +7695,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7649,6 +7711,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7691,6 +7754,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7837,6 +7901,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -7894,6 +7959,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -8130,6 +8196,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8148,6 +8215,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8206,6 +8274,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8542,6 +8611,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix
index 2c0cd6d9986..8953456ce09 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix
@@ -339,6 +339,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -475,6 +476,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -565,6 +567,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -601,6 +604,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -635,6 +639,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -711,6 +716,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -978,7 +984,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1042,6 +1047,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1344,6 +1350,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1587,6 +1594,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1619,6 +1627,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1714,6 +1723,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1839,6 +1849,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1985,6 +1996,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2117,9 +2129,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2136,6 +2150,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2248,6 +2263,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2360,6 +2376,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2482,7 +2499,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2734,6 +2754,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg" = doDistribute super."ekg_0_4_0_8";
"ekg-bosun" = dontDistribute super."ekg-bosun";
@@ -2753,6 +2774,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_0";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2767,6 +2789,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2842,6 +2865,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_1";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2897,6 +2921,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3192,6 +3217,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3219,6 +3245,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3278,9 +3305,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3518,6 +3547,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3600,6 +3630,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3667,6 +3698,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4020,6 +4053,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4082,10 +4116,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4460,6 +4498,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4564,6 +4603,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4618,6 +4658,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4637,6 +4678,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4658,6 +4700,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4767,6 +4810,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5184,6 +5228,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5424,6 +5469,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_17";
@@ -5661,6 +5707,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5695,6 +5742,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5742,6 +5790,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5756,6 +5805,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5847,6 +5897,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5864,6 +5915,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5918,6 +5970,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6139,6 +6192,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6231,6 +6285,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6319,6 +6374,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6491,6 +6547,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6505,6 +6562,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6517,6 +6575,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6852,6 +6911,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6980,6 +7040,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -7040,6 +7101,7 @@ self: super: {
"sme" = dontDistribute super."sme";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7060,6 +7122,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7195,6 +7258,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7315,6 +7379,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7502,6 +7567,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7548,6 +7614,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7563,6 +7630,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7603,6 +7671,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7749,6 +7818,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -7805,6 +7875,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7823,6 +7894,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -8039,6 +8111,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8057,6 +8130,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8116,6 +8190,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8450,6 +8525,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix
index 86590db9a03..2b79bdb1932 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix
@@ -339,6 +339,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -474,6 +475,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -564,6 +566,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -600,6 +603,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -634,6 +638,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -710,6 +715,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -977,7 +983,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1041,6 +1046,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1342,6 +1348,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1585,6 +1592,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1617,6 +1625,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1711,6 +1720,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1835,6 +1845,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1980,6 +1991,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2112,9 +2124,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2131,6 +2145,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2243,6 +2258,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2355,6 +2371,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2477,7 +2494,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2729,6 +2749,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg" = doDistribute super."ekg_0_4_0_8";
"ekg-bosun" = dontDistribute super."ekg-bosun";
@@ -2748,6 +2769,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_0";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2762,6 +2784,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2837,6 +2860,7 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_1";
"every-bit-counts" = dontDistribute super."every-bit-counts";
"ewe" = dontDistribute super."ewe";
@@ -2892,6 +2916,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3187,6 +3212,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3214,6 +3240,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3273,9 +3300,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3513,6 +3542,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3595,6 +3625,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3662,6 +3693,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4015,6 +4048,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4077,10 +4111,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4455,6 +4493,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4558,6 +4597,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4612,6 +4652,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4631,6 +4672,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4652,6 +4694,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4761,6 +4804,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5178,6 +5222,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5417,6 +5462,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-logger" = doDistribute super."monad-logger_0_3_17";
@@ -5654,6 +5700,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5688,6 +5735,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5735,6 +5783,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5749,6 +5798,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5840,6 +5890,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5857,6 +5908,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5911,6 +5963,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6132,6 +6185,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6224,6 +6278,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6312,6 +6367,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6483,6 +6539,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6497,6 +6554,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6509,6 +6567,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6843,6 +6902,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6971,6 +7031,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -7031,6 +7092,7 @@ self: super: {
"sme" = dontDistribute super."sme";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7051,6 +7113,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7186,6 +7249,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7306,6 +7370,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7493,6 +7558,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7539,6 +7605,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7554,6 +7621,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7594,6 +7662,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7740,6 +7809,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -7796,6 +7866,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7814,6 +7885,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -8029,6 +8101,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8047,6 +8120,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8106,6 +8180,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8440,6 +8515,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix
index 06df71ceb75..d11a3fd3d5a 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix
@@ -336,6 +336,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -468,6 +469,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -557,6 +559,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -593,6 +596,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -627,6 +631,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -703,6 +708,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -969,7 +975,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1033,6 +1038,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1331,6 +1337,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1366,6 +1373,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1473,6 +1481,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1571,6 +1580,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1603,6 +1613,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1695,6 +1706,7 @@ self: super: {
"bspack" = dontDistribute super."bspack";
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1818,6 +1830,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1956,6 +1969,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2085,9 +2099,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2104,6 +2120,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2214,6 +2231,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2326,6 +2344,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-ivar" = dontDistribute super."data-ivar";
"data-json-token" = dontDistribute super."data-json-token";
@@ -2447,7 +2466,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2692,6 +2714,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2709,6 +2732,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2723,6 +2747,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2795,11 +2820,13 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_2";
"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" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2848,6 +2875,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3139,6 +3167,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3164,6 +3193,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3221,9 +3251,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3459,6 +3491,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3540,6 +3573,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3607,6 +3641,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -3822,6 +3858,7 @@ self: super: {
"haxl-amazonka" = dontDistribute super."haxl-amazonka";
"haxl-facebook" = dontDistribute super."haxl-facebook";
"haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_11_1_4";
"haxr-th" = dontDistribute super."haxr-th";
"haxy" = dontDistribute super."haxy";
"hayland" = dontDistribute super."hayland";
@@ -3855,6 +3892,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3953,6 +3991,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4014,10 +4053,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4229,6 +4272,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4384,6 +4428,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4486,6 +4531,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4538,6 +4584,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4557,6 +4604,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4577,6 +4625,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4685,6 +4734,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5097,6 +5147,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5327,6 +5378,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5558,6 +5610,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5589,6 +5642,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5635,6 +5689,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5649,6 +5704,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5740,6 +5796,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5757,6 +5814,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5807,6 +5865,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6018,6 +6077,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6110,6 +6170,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6198,6 +6259,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6366,6 +6428,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6379,6 +6442,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6390,6 +6454,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6722,6 +6787,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_7";
@@ -6848,6 +6914,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6906,6 +6973,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6925,6 +6993,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7059,6 +7128,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7115,6 +7185,7 @@ self: super: {
"stm-channelize" = dontDistribute super."stm-channelize";
"stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
"stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-containers" = doDistribute super."stm-containers_0_2_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7176,6 +7247,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7361,6 +7433,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7406,6 +7479,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7421,6 +7495,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7461,6 +7536,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7606,6 +7682,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -7659,6 +7736,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7677,6 +7755,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7889,6 +7968,7 @@ self: super: {
"vintage-basic" = dontDistribute super."vintage-basic";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7907,6 +7987,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7961,6 +8042,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8253,6 +8335,7 @@ self: super: {
"yesod-worker" = dontDistribute super."yesod-worker";
"yet-another-logger" = dontDistribute super."yet-another-logger";
"yhccore" = dontDistribute super."yhccore";
+ "yi" = doDistribute super."yi_0_12_4";
"yi-contrib" = dontDistribute super."yi-contrib";
"yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
"yi-gtk" = dontDistribute super."yi-gtk";
@@ -8290,6 +8373,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix
index 9bd529f774b..ca3b84d94e1 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix
@@ -335,6 +335,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -467,6 +468,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -556,6 +558,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -592,6 +595,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -626,6 +630,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -702,6 +707,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -968,7 +974,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1032,6 +1037,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1329,6 +1335,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1364,6 +1371,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1470,6 +1478,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1567,6 +1576,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1599,6 +1609,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1691,6 +1702,7 @@ self: super: {
"bspack" = dontDistribute super."bspack";
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1814,6 +1826,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1952,6 +1965,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2079,9 +2093,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2098,6 +2114,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2208,6 +2225,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2320,6 +2338,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-ivar" = dontDistribute super."data-ivar";
"data-json-token" = dontDistribute super."data-json-token";
@@ -2441,7 +2460,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2686,6 +2708,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2703,6 +2726,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2717,6 +2741,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2789,11 +2814,13 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_2";
"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" = doDistribute super."exact-pi_0_4_1_1";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
@@ -2841,6 +2868,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3131,6 +3159,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3156,6 +3185,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3213,9 +3243,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3451,6 +3483,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3532,6 +3565,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3599,6 +3633,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -3814,6 +3850,7 @@ self: super: {
"haxl-amazonka" = dontDistribute super."haxl-amazonka";
"haxl-facebook" = dontDistribute super."haxl-facebook";
"haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_11_1_4";
"haxr-th" = dontDistribute super."haxr-th";
"haxy" = dontDistribute super."haxy";
"hayland" = dontDistribute super."hayland";
@@ -3847,6 +3884,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3945,6 +3983,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4006,10 +4045,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4220,6 +4263,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4372,6 +4416,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4473,6 +4518,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4525,6 +4571,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4544,6 +4591,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4564,6 +4612,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4672,6 +4721,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5084,6 +5134,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5135,6 +5186,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "managed" = doDistribute super."managed_1_0_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5313,6 +5365,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5544,6 +5597,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5575,6 +5629,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5621,6 +5676,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5635,6 +5691,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5726,6 +5783,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5743,6 +5801,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5793,6 +5852,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6004,6 +6064,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6095,6 +6156,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6183,6 +6245,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6351,6 +6414,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6364,6 +6428,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6375,6 +6440,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6707,6 +6773,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_7";
@@ -6833,6 +6900,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6891,6 +6959,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6910,6 +6979,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7044,6 +7114,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7100,6 +7171,7 @@ self: super: {
"stm-channelize" = dontDistribute super."stm-channelize";
"stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
"stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-containers" = doDistribute super."stm-containers_0_2_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7161,6 +7233,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7344,6 +7417,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7389,6 +7463,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7404,6 +7479,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7444,6 +7520,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7562,6 +7639,7 @@ self: super: {
"trivia" = dontDistribute super."trivia";
"trivial-constraint" = dontDistribute super."trivial-constraint";
"tropical" = dontDistribute super."tropical";
+ "true-name" = doDistribute super."true-name_0_1_0_1";
"truelevel" = dontDistribute super."truelevel";
"trurl" = dontDistribute super."trurl";
"truthful" = dontDistribute super."truthful";
@@ -7588,6 +7666,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -7641,6 +7720,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7659,6 +7739,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7869,6 +7950,7 @@ self: super: {
"vintage-basic" = dontDistribute super."vintage-basic";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7887,6 +7969,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7940,6 +8023,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8231,6 +8315,7 @@ self: super: {
"yesod-worker" = dontDistribute super."yesod-worker";
"yet-another-logger" = dontDistribute super."yet-another-logger";
"yhccore" = dontDistribute super."yhccore";
+ "yi" = doDistribute super."yi_0_12_4";
"yi-contrib" = dontDistribute super."yi-contrib";
"yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
"yi-gtk" = dontDistribute super."yi-gtk";
@@ -8268,6 +8353,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix
index 0f710c73778..4397093ea49 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix
@@ -335,6 +335,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -467,6 +468,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -555,6 +557,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -591,6 +594,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -625,6 +629,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -701,6 +706,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -967,7 +973,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1031,6 +1036,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1328,6 +1334,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1363,6 +1370,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1469,6 +1477,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1566,6 +1575,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1598,6 +1608,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1690,6 +1701,7 @@ self: super: {
"bspack" = dontDistribute super."bspack";
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1813,6 +1825,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1947,6 +1960,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2074,9 +2088,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2093,6 +2109,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2203,6 +2220,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2315,6 +2333,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-ivar" = dontDistribute super."data-ivar";
"data-json-token" = dontDistribute super."data-json-token";
@@ -2436,7 +2455,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2680,6 +2702,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2697,6 +2720,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2711,6 +2735,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2783,11 +2808,13 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_2";
"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" = doDistribute super."exact-pi_0_4_1_1";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
@@ -2834,6 +2861,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3124,6 +3152,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3149,6 +3178,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3206,9 +3236,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3444,6 +3476,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3525,6 +3558,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3592,6 +3626,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -3807,6 +3843,7 @@ self: super: {
"haxl-amazonka" = dontDistribute super."haxl-amazonka";
"haxl-facebook" = dontDistribute super."haxl-facebook";
"haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_11_1_4";
"haxr-th" = dontDistribute super."haxr-th";
"haxy" = dontDistribute super."haxy";
"hayland" = dontDistribute super."hayland";
@@ -3840,6 +3877,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3937,6 +3975,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -3998,10 +4037,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4212,6 +4255,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4363,6 +4407,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4464,6 +4509,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4516,6 +4562,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4535,6 +4582,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4555,6 +4603,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4662,6 +4711,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5074,6 +5124,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5123,6 +5174,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "managed" = doDistribute super."managed_1_0_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5297,6 +5349,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5528,6 +5581,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5559,6 +5613,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5605,6 +5660,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5619,6 +5675,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5710,6 +5767,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5727,6 +5785,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5777,6 +5836,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -5986,6 +6046,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6077,6 +6138,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6165,6 +6227,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6333,6 +6396,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6346,6 +6410,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6357,6 +6422,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6689,6 +6755,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_7";
@@ -6814,6 +6881,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6871,6 +6939,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6890,6 +6959,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7024,6 +7094,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7080,6 +7151,7 @@ self: super: {
"stm-channelize" = dontDistribute super."stm-channelize";
"stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
"stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-containers" = doDistribute super."stm-containers_0_2_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7139,6 +7211,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7321,6 +7394,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7366,6 +7440,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7381,6 +7456,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7421,6 +7497,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7539,6 +7616,7 @@ self: super: {
"trivia" = dontDistribute super."trivia";
"trivial-constraint" = dontDistribute super."trivial-constraint";
"tropical" = dontDistribute super."tropical";
+ "true-name" = doDistribute super."true-name_0_1_0_1";
"truelevel" = dontDistribute super."truelevel";
"trurl" = dontDistribute super."trurl";
"truthful" = dontDistribute super."truthful";
@@ -7565,6 +7643,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_6";
@@ -7618,6 +7697,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7636,6 +7716,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7846,6 +7927,7 @@ self: super: {
"vintage-basic" = dontDistribute super."vintage-basic";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7864,6 +7946,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7917,6 +8000,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8208,6 +8292,7 @@ self: super: {
"yesod-worker" = dontDistribute super."yesod-worker";
"yet-another-logger" = dontDistribute super."yet-another-logger";
"yhccore" = dontDistribute super."yhccore";
+ "yi" = doDistribute super."yi_0_12_4";
"yi-contrib" = dontDistribute super."yi-contrib";
"yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
"yi-gtk" = dontDistribute super."yi-gtk";
@@ -8245,6 +8330,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix
index 49aedccdd13..50f7e74e7dd 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix
@@ -335,6 +335,8 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
+ "GLUT" = doDistribute super."GLUT_2_7_0_7";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
"GPipe-Collada" = dontDistribute super."GPipe-Collada";
@@ -466,6 +468,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -554,6 +557,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -590,6 +594,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -624,6 +629,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -698,7 +704,9 @@ self: super: {
"OpenCL" = dontDistribute super."OpenCL";
"OpenCLRaw" = dontDistribute super."OpenCLRaw";
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_3_0_0_2";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -964,7 +972,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1028,6 +1035,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1325,6 +1333,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1360,6 +1369,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1463,6 +1473,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1559,6 +1570,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1591,6 +1603,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1683,6 +1696,7 @@ self: super: {
"bspack" = dontDistribute super."bspack";
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1806,6 +1820,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1937,6 +1952,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2064,9 +2080,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2083,6 +2101,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2193,6 +2212,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2305,6 +2325,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-ivar" = dontDistribute super."data-ivar";
"data-json-token" = dontDistribute super."data-json-token";
@@ -2426,7 +2447,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2669,6 +2693,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2686,6 +2711,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2700,6 +2726,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2772,11 +2799,13 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_2";
"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" = doDistribute super."exact-pi_0_4_1_1";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
@@ -2823,6 +2852,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3113,6 +3143,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3138,6 +3169,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3195,9 +3227,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3433,6 +3467,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3514,6 +3549,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3581,6 +3617,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -3796,6 +3834,7 @@ self: super: {
"haxl-amazonka" = dontDistribute super."haxl-amazonka";
"haxl-facebook" = dontDistribute super."haxl-facebook";
"haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_11_1_4";
"haxr-th" = dontDistribute super."haxr-th";
"haxy" = dontDistribute super."haxy";
"hayland" = dontDistribute super."hayland";
@@ -3829,6 +3868,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3926,6 +3966,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -3987,10 +4028,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4201,6 +4246,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4349,6 +4395,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4450,6 +4497,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4502,6 +4550,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4521,6 +4570,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4540,6 +4590,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ipatch" = dontDistribute super."ipatch";
"ipc" = dontDistribute super."ipc";
@@ -4646,6 +4697,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5058,6 +5110,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5106,6 +5159,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "managed" = doDistribute super."managed_1_0_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5280,6 +5334,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5510,6 +5565,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5541,6 +5597,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5587,6 +5644,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5601,6 +5659,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5691,6 +5750,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5708,6 +5768,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5758,6 +5819,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -5965,6 +6027,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6056,6 +6119,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6144,6 +6208,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6312,6 +6377,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6325,6 +6391,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6336,6 +6403,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6668,6 +6736,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_7";
@@ -6793,6 +6862,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6850,6 +6920,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6869,6 +6940,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7003,6 +7075,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7059,6 +7132,7 @@ self: super: {
"stm-channelize" = dontDistribute super."stm-channelize";
"stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
"stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-containers" = doDistribute super."stm-containers_0_2_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7118,6 +7192,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7300,6 +7375,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7345,6 +7421,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7360,6 +7437,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7400,6 +7478,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7518,6 +7597,7 @@ self: super: {
"trivia" = dontDistribute super."trivia";
"trivial-constraint" = dontDistribute super."trivial-constraint";
"tropical" = dontDistribute super."tropical";
+ "true-name" = doDistribute super."true-name_0_1_0_1";
"truelevel" = dontDistribute super."truelevel";
"trurl" = dontDistribute super."trurl";
"truthful" = dontDistribute super."truthful";
@@ -7544,6 +7624,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_6";
@@ -7597,6 +7678,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7615,6 +7697,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7823,6 +7906,7 @@ self: super: {
"vintage-basic" = dontDistribute super."vintage-basic";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7841,6 +7925,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7893,6 +7978,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8182,6 +8268,7 @@ self: super: {
"yesod-worker" = dontDistribute super."yesod-worker";
"yet-another-logger" = dontDistribute super."yet-another-logger";
"yhccore" = dontDistribute super."yhccore";
+ "yi" = doDistribute super."yi_0_12_4";
"yi-contrib" = dontDistribute super."yi-contrib";
"yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
"yi-gtk" = dontDistribute super."yi-gtk";
@@ -8219,6 +8306,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix
index 6755f138c59..a58646d73d7 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix
@@ -335,6 +335,8 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
+ "GLUT" = doDistribute super."GLUT_2_7_0_7";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
"GPipe-Collada" = dontDistribute super."GPipe-Collada";
@@ -466,6 +468,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -553,6 +556,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -589,6 +593,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -623,6 +628,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -696,7 +702,9 @@ self: super: {
"OpenCL" = dontDistribute super."OpenCL";
"OpenCLRaw" = dontDistribute super."OpenCLRaw";
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_3_0_0_2";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -962,7 +970,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1026,6 +1033,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1323,6 +1331,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
"asciidiagram" = doDistribute super."asciidiagram_1_1_1_1";
@@ -1357,6 +1366,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1384,6 +1394,7 @@ self: super: {
"authenticate-ldap" = dontDistribute super."authenticate-ldap";
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
+ "auto-update" = doDistribute super."auto-update_0_1_3_1";
"autoexporter" = dontDistribute super."autoexporter";
"automitive-cse" = dontDistribute super."automitive-cse";
"automotive-cse" = dontDistribute super."automotive-cse";
@@ -1458,6 +1469,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1554,6 +1566,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1586,6 +1599,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1677,6 +1691,7 @@ self: super: {
"bspack" = dontDistribute super."bspack";
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1800,6 +1815,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1930,6 +1946,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2056,9 +2073,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2075,6 +2094,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2183,6 +2203,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
"cryptonite-openssl" = dontDistribute super."cryptonite-openssl";
@@ -2294,6 +2315,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-ivar" = dontDistribute super."data-ivar";
"data-json-token" = dontDistribute super."data-json-token";
@@ -2415,7 +2437,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2658,6 +2683,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2675,6 +2701,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2689,6 +2716,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2761,11 +2789,13 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_2";
"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" = doDistribute super."exact-pi_0_4_1_1";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
@@ -2812,12 +2842,14 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
"family-tree" = dontDistribute super."family-tree";
+ "fast-builder" = doDistribute super."fast-builder_0_0_0_4";
"fast-digits" = dontDistribute super."fast-digits";
"fast-logger" = doDistribute super."fast-logger_2_4_5";
"fast-math" = dontDistribute super."fast-math";
@@ -3100,6 +3132,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3124,6 +3157,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3181,9 +3215,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3419,6 +3455,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3500,6 +3537,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3567,6 +3605,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -3782,6 +3822,7 @@ self: super: {
"haxl-amazonka" = dontDistribute super."haxl-amazonka";
"haxl-facebook" = dontDistribute super."haxl-facebook";
"haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_11_1_4";
"haxr-th" = dontDistribute super."haxr-th";
"haxy" = dontDistribute super."haxy";
"hayland" = dontDistribute super."hayland";
@@ -3815,6 +3856,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3912,6 +3954,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -3972,10 +4015,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4186,6 +4233,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4334,6 +4382,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4435,6 +4484,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4487,6 +4537,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4506,6 +4557,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4525,6 +4577,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ipatch" = dontDistribute super."ipatch";
"ipc" = dontDistribute super."ipc";
@@ -4631,6 +4684,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5042,6 +5096,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5090,6 +5145,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "managed" = doDistribute super."managed_1_0_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5130,6 +5186,7 @@ self: super: {
"mastermind" = dontDistribute super."mastermind";
"matcher" = dontDistribute super."matcher";
"matchers" = dontDistribute super."matchers";
+ "math-functions" = doDistribute super."math-functions_0_1_6_0";
"mathblog" = dontDistribute super."mathblog";
"mathgenealogy" = dontDistribute super."mathgenealogy";
"mathista" = dontDistribute super."mathista";
@@ -5262,6 +5319,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5491,6 +5549,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5522,6 +5581,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5568,6 +5628,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5582,6 +5643,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5672,6 +5734,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5689,6 +5752,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5739,6 +5803,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -5827,6 +5892,7 @@ self: super: {
"persistent-protobuf" = dontDistribute super."persistent-protobuf";
"persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
"persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-template" = doDistribute super."persistent-template_2_1_8";
"persistent-vector" = dontDistribute super."persistent-vector";
"persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
"persona" = dontDistribute super."persona";
@@ -5944,6 +6010,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6035,6 +6102,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6122,6 +6190,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6290,6 +6359,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6303,6 +6373,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6314,6 +6385,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6645,6 +6717,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_7";
@@ -6767,6 +6840,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6823,6 +6897,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6842,6 +6917,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -6976,6 +7052,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7031,6 +7108,7 @@ self: super: {
"stm-channelize" = dontDistribute super."stm-channelize";
"stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
"stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-containers" = doDistribute super."stm-containers_0_2_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7061,6 +7139,7 @@ self: super: {
"stream-fusion" = dontDistribute super."stream-fusion";
"stream-monad" = dontDistribute super."stream-monad";
"streamed" = dontDistribute super."streamed";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_15_4";
"streaming-histogram" = dontDistribute super."streaming-histogram";
"streaming-png" = dontDistribute super."streaming-png";
"streaming-utils" = dontDistribute super."streaming-utils";
@@ -7089,6 +7168,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7270,6 +7350,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7313,6 +7394,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7328,6 +7410,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7368,6 +7451,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7486,6 +7570,7 @@ self: super: {
"trivia" = dontDistribute super."trivia";
"trivial-constraint" = dontDistribute super."trivial-constraint";
"tropical" = dontDistribute super."tropical";
+ "true-name" = doDistribute super."true-name_0_1_0_1";
"truelevel" = dontDistribute super."truelevel";
"trurl" = dontDistribute super."trurl";
"truthful" = dontDistribute super."truthful";
@@ -7512,6 +7597,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle-options" = dontDistribute super."turtle-options";
@@ -7564,6 +7650,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7582,6 +7669,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7788,6 +7876,7 @@ self: super: {
"vintage-basic" = dontDistribute super."vintage-basic";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7806,6 +7895,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7822,6 +7912,7 @@ self: super: {
"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" = doDistribute super."wai-handler-launch_3_0_1";
"wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
"wai-handler-snap" = dontDistribute super."wai-handler-snap";
"wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
@@ -7854,6 +7945,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -7993,6 +8085,7 @@ self: super: {
"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_3_4_2";
"xml-enumerator" = dontDistribute super."xml-enumerator";
"xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
"xml-extractors" = dontDistribute super."xml-extractors";
@@ -8134,6 +8227,7 @@ self: super: {
"yesod-worker" = dontDistribute super."yesod-worker";
"yet-another-logger" = dontDistribute super."yet-another-logger";
"yhccore" = dontDistribute super."yhccore";
+ "yi" = doDistribute super."yi_0_12_4";
"yi-contrib" = dontDistribute super."yi-contrib";
"yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
"yi-gtk" = dontDistribute super."yi-gtk";
@@ -8171,6 +8265,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix
index eab17859efa..ce130cf810c 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix
@@ -335,6 +335,8 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
+ "GLUT" = doDistribute super."GLUT_2_7_0_7";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
"GPipe-Collada" = dontDistribute super."GPipe-Collada";
@@ -465,6 +467,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -552,6 +555,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -588,6 +592,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -622,6 +627,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -695,7 +701,9 @@ self: super: {
"OpenCL" = dontDistribute super."OpenCL";
"OpenCLRaw" = dontDistribute super."OpenCLRaw";
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
+ "OpenGL" = doDistribute super."OpenGL_3_0_0_2";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -961,7 +969,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1025,6 +1032,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1322,6 +1330,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
"asciidiagram" = doDistribute super."asciidiagram_1_1_1_1";
@@ -1356,6 +1365,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1383,6 +1393,7 @@ self: super: {
"authenticate-ldap" = dontDistribute super."authenticate-ldap";
"authinfo-hs" = dontDistribute super."authinfo-hs";
"authoring" = dontDistribute super."authoring";
+ "auto-update" = doDistribute super."auto-update_0_1_3_1";
"autoexporter" = dontDistribute super."autoexporter";
"automitive-cse" = dontDistribute super."automitive-cse";
"automotive-cse" = dontDistribute super."automotive-cse";
@@ -1457,6 +1468,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1553,6 +1565,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1585,6 +1598,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1676,6 +1690,7 @@ self: super: {
"bspack" = dontDistribute super."bspack";
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1722,6 +1737,7 @@ self: super: {
"cabal-cargs" = dontDistribute super."cabal-cargs";
"cabal-constraints" = dontDistribute super."cabal-constraints";
"cabal-db" = dontDistribute super."cabal-db";
+ "cabal-debian" = doDistribute super."cabal-debian_4_32_3";
"cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
"cabal-dev" = dontDistribute super."cabal-dev";
"cabal-dir" = dontDistribute super."cabal-dir";
@@ -1798,6 +1814,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1928,6 +1945,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2053,9 +2071,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2072,6 +2092,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2180,6 +2201,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
"cryptonite-openssl" = dontDistribute super."cryptonite-openssl";
@@ -2290,6 +2312,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-ivar" = dontDistribute super."data-ivar";
"data-json-token" = dontDistribute super."data-json-token";
@@ -2411,7 +2434,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2653,6 +2679,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2670,6 +2697,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2684,6 +2712,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2756,11 +2785,13 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_2";
"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" = doDistribute super."exact-pi_0_4_1_1";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
"exception-monads-fd" = dontDistribute super."exception-monads-fd";
@@ -2797,6 +2828,7 @@ self: super: {
"extensible" = dontDistribute super."extensible";
"extensible-data" = dontDistribute super."extensible-data";
"external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_4_5";
"extractelf" = dontDistribute super."extractelf";
"ez-couch" = dontDistribute super."ez-couch";
"faceted" = dontDistribute super."faceted";
@@ -2806,12 +2838,14 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
"falling-turnip" = dontDistribute super."falling-turnip";
"fallingblocks" = dontDistribute super."fallingblocks";
"family-tree" = dontDistribute super."family-tree";
+ "fast-builder" = doDistribute super."fast-builder_0_0_0_4";
"fast-digits" = dontDistribute super."fast-digits";
"fast-math" = dontDistribute super."fast-math";
"fast-tags" = dontDistribute super."fast-tags";
@@ -3093,6 +3127,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3117,6 +3152,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3174,9 +3210,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3412,6 +3450,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3493,6 +3532,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3560,6 +3600,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -3774,6 +3816,7 @@ self: super: {
"haxl-amazonka" = dontDistribute super."haxl-amazonka";
"haxl-facebook" = dontDistribute super."haxl-facebook";
"haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_11_1_4";
"haxr-th" = dontDistribute super."haxr-th";
"haxy" = dontDistribute super."haxy";
"hayland" = dontDistribute super."hayland";
@@ -3807,6 +3850,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3903,6 +3947,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -3963,10 +4008,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4177,6 +4226,7 @@ self: super: {
"hsdip" = dontDistribute super."hsdip";
"hsdns" = dontDistribute super."hsdns";
"hsdns-cache" = dontDistribute super."hsdns-cache";
+ "hsebaysdk" = doDistribute super."hsebaysdk_0_3_1_0";
"hsemail-ns" = dontDistribute super."hsemail-ns";
"hsenv" = dontDistribute super."hsenv";
"hserv" = dontDistribute super."hserv";
@@ -4325,6 +4375,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4426,6 +4477,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4478,6 +4530,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4497,6 +4550,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4516,6 +4570,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ipatch" = dontDistribute super."ipatch";
"ipc" = dontDistribute super."ipc";
@@ -4622,6 +4677,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5032,6 +5088,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5080,6 +5137,7 @@ self: super: {
"make-hard-links" = dontDistribute super."make-hard-links";
"make-package" = dontDistribute super."make-package";
"makedo" = dontDistribute super."makedo";
+ "managed" = doDistribute super."managed_1_0_3";
"manatee" = dontDistribute super."manatee";
"manatee-all" = dontDistribute super."manatee-all";
"manatee-anything" = dontDistribute super."manatee-anything";
@@ -5120,6 +5178,7 @@ self: super: {
"mastermind" = dontDistribute super."mastermind";
"matcher" = dontDistribute super."matcher";
"matchers" = dontDistribute super."matchers";
+ "math-functions" = doDistribute super."math-functions_0_1_6_0";
"mathblog" = dontDistribute super."mathblog";
"mathgenealogy" = dontDistribute super."mathgenealogy";
"mathista" = dontDistribute super."mathista";
@@ -5252,6 +5311,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5481,6 +5541,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5512,6 +5573,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5558,6 +5620,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5572,6 +5635,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5662,6 +5726,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5679,6 +5744,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5729,6 +5795,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -5817,6 +5884,7 @@ self: super: {
"persistent-protobuf" = dontDistribute super."persistent-protobuf";
"persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
"persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-template" = doDistribute super."persistent-template_2_1_8";
"persistent-vector" = dontDistribute super."persistent-vector";
"persistent-zookeeper" = dontDistribute super."persistent-zookeeper";
"persona" = dontDistribute super."persona";
@@ -5934,6 +6002,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6022,6 +6091,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6109,6 +6179,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6277,6 +6348,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6290,6 +6362,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6301,6 +6374,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6632,6 +6706,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_7";
@@ -6754,6 +6829,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6810,6 +6886,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6829,6 +6906,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -6963,6 +7041,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7018,6 +7097,7 @@ self: super: {
"stm-channelize" = dontDistribute super."stm-channelize";
"stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
"stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-containers" = doDistribute super."stm-containers_0_2_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7048,6 +7128,7 @@ self: super: {
"stream-fusion" = dontDistribute super."stream-fusion";
"stream-monad" = dontDistribute super."stream-monad";
"streamed" = dontDistribute super."streamed";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_15_4";
"streaming-histogram" = dontDistribute super."streaming-histogram";
"streaming-png" = dontDistribute super."streaming-png";
"streaming-utils" = dontDistribute super."streaming-utils";
@@ -7076,6 +7157,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7256,6 +7338,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7299,6 +7382,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7314,6 +7398,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7322,6 +7407,7 @@ self: super: {
"th-kinds-fork" = dontDistribute super."th-kinds-fork";
"th-lift-instances" = dontDistribute super."th-lift-instances";
"th-printf" = dontDistribute super."th-printf";
+ "th-reify-many" = doDistribute super."th-reify-many_0_1_4_1";
"th-sccs" = dontDistribute super."th-sccs";
"th-traced" = dontDistribute super."th-traced";
"th-typegraph" = dontDistribute super."th-typegraph";
@@ -7353,6 +7439,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7470,6 +7557,7 @@ self: super: {
"trivia" = dontDistribute super."trivia";
"trivial-constraint" = dontDistribute super."trivial-constraint";
"tropical" = dontDistribute super."tropical";
+ "true-name" = doDistribute super."true-name_0_1_0_1";
"truelevel" = dontDistribute super."truelevel";
"trurl" = dontDistribute super."trurl";
"truthful" = dontDistribute super."truthful";
@@ -7496,6 +7584,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle-options" = dontDistribute super."turtle-options";
@@ -7548,6 +7637,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7566,6 +7656,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7772,6 +7863,7 @@ self: super: {
"vintage-basic" = dontDistribute super."vintage-basic";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7790,6 +7882,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7806,6 +7899,7 @@ self: super: {
"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" = doDistribute super."wai-handler-launch_3_0_1";
"wai-handler-scgi" = dontDistribute super."wai-handler-scgi";
"wai-handler-snap" = dontDistribute super."wai-handler-snap";
"wai-handler-webkit" = dontDistribute super."wai-handler-webkit";
@@ -7838,6 +7932,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -7977,6 +8072,7 @@ self: super: {
"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_3_4_2";
"xml-enumerator" = dontDistribute super."xml-enumerator";
"xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
"xml-extractors" = dontDistribute super."xml-extractors";
@@ -8117,6 +8213,7 @@ self: super: {
"yesod-worker" = dontDistribute super."yesod-worker";
"yet-another-logger" = dontDistribute super."yet-another-logger";
"yhccore" = dontDistribute super."yhccore";
+ "yi" = doDistribute super."yi_0_12_4";
"yi-contrib" = dontDistribute super."yi-contrib";
"yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
"yi-gtk" = dontDistribute super."yi-gtk";
@@ -8154,6 +8251,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.16.nix b/pkgs/development/haskell-modules/configuration-lts-5.16.nix
new file mode 100644
index 00000000000..2ce1f84fb4a
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-5.16.nix
@@ -0,0 +1,8229 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: {
+
+ # 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;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ time = null;
+ transformers = null;
+ unix = null;
+
+ # lts-5.16 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";
+ "AFSM" = dontDistribute super."AFSM";
+ "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" = doDistribute super."Agda_2_4_2_5";
+ "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";
+ "BiGUL" = dontDistribute super."BiGUL";
+ "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";
+ "BiobaseNewick" = dontDistribute super."BiobaseNewick";
+ "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";
+ "Blobs" = dontDistribute super."Blobs";
+ "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";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cartesian" = dontDistribute super."Cartesian";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "ChannelT" = dontDistribute super."ChannelT";
+ "Chart" = doDistribute super."Chart_1_5_4";
+ "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4";
+ "Chart-diagrams" = dontDistribute super."Chart-diagrams";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "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";
+ "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";
+ "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";
+ "ContextAlgebra" = dontDistribute super."ContextAlgebra";
+ "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";
+ "CoreDump" = dontDistribute super."CoreDump";
+ "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";
+ "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";
+ "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";
+ "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" = doDistribute super."Earley_0_10_1_0";
+ "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";
+ "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";
+ "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";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForestStructures" = dontDistribute super."ForestStructures";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
+ "Fractaler" = dontDistribute super."Fractaler";
+ "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-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLM" = dontDistribute super."GLM";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
+ "GLUT" = doDistribute super."GLUT_2_7_0_7";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "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";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "Gifcurry" = dontDistribute super."Gifcurry";
+ "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";
+ "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";
+ "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-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "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";
+ "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";
+ "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";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "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";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_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";
+ "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";
+ "HaskRel" = dontDistribute super."HaskRel";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hate" = dontDistribute super."Hate";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "HerbiePlugin" = dontDistribute super."HerbiePlugin";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Hish" = dontDistribute super."Hish";
+ "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-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "HulkImport" = dontDistribute super."HulkImport";
+ "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";
+ "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";
+ "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-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
+ "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";
+ "Kriens" = dontDistribute super."Kriens";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LATS" = dontDistribute super."LATS";
+ "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";
+ "Lambdajudge" = dontDistribute super."Lambdajudge";
+ "Lambdaya" = dontDistribute super."Lambdaya";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListWriter" = dontDistribute super."ListWriter";
+ "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";
+ "MASMGen" = dontDistribute super."MASMGen";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MTGBuilder" = dontDistribute super."MTGBuilder";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT" = dontDistribute super."MaybeT";
+ "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";
+ "Michelangelo" = dontDistribute super."Michelangelo";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
+ "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";
+ "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-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";
+ "NearContextAlgebra" = dontDistribute super."NearContextAlgebra";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "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";
+ "NumberTheory" = dontDistribute super."NumberTheory";
+ "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";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OneTuple" = dontDistribute super."OneTuple";
+ "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_3_0_0_2";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_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";
+ "PTQ" = dontDistribute super."PTQ";
+ "PUH-Project" = dontDistribute super."PUH-Project";
+ "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";
+ "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty";
+ "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";
+ "QLearn" = dontDistribute super."QLearn";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "Quelea" = dontDistribute super."Quelea";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_8_1";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "QuickPlot" = dontDistribute super."QuickPlot";
+ "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";
+ "RNAlien" = doDistribute super."RNAlien_1_0_0";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "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";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RoyalMonad" = dontDistribute super."RoyalMonad";
+ "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";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = dontDistribute super."SVGFonts";
+ "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";
+ "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";
+ "SimpleServer" = dontDistribute super."SimpleServer";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Slides" = dontDistribute super."Slides";
+ "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-auth" = dontDistribute super."Spock-auth";
+ "Spock-lucid" = dontDistribute super."Spock-lucid";
+ "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "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";
+ "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";
+ "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";
+ "Tahin" = dontDistribute super."Tahin";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "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-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";
+ "Verba" = dontDistribute super."Verba";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "Vulkan" = dontDistribute super."Vulkan";
+ "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";
+ "WaveFront" = dontDistribute super."WaveFront";
+ "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" = doDistribute super."Win32_2_3_1_1";
+ "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordAlignment" = dontDistribute super."WordAlignment";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "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";
+ "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-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-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-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "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-left-pad" = dontDistribute super."acme-left-pad";
+ "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";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "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";
+ "adler32" = dontDistribute super."adler32";
+ "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_9_0_1";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-filthy" = dontDistribute super."aeson-filthy";
+ "aeson-flatten" = dontDistribute super."aeson-flatten";
+ "aeson-iproute" = dontDistribute super."aeson-iproute";
+ "aeson-json-ast" = dontDistribute super."aeson-json-ast";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
+ "aeson-prefix" = dontDistribute super."aeson-prefix";
+ "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-value-parser" = dontDistribute super."aeson-value-parser";
+ "aeson-yak" = dontDistribute super."aeson-yak";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "ag-pictgen" = dontDistribute super."ag-pictgen";
+ "agda-server" = dontDistribute super."agda-server";
+ "agda-snippets" = dontDistribute super."agda-snippets";
+ "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
+ "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" = doDistribute super."airship_0_4_3_0";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-branches" = dontDistribute super."aivika-branches";
+ "aivika-distributed" = dontDistribute super."aivika-distributed";
+ "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";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "alga" = dontDistribute super."alga";
+ "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" = doDistribute super."amazonka_1_3_7";
+ "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7";
+ "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7";
+ "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager";
+ "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7";
+ "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7";
+ "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7";
+ "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7";
+ "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7";
+ "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7";
+ "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7";
+ "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events";
+ "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7";
+ "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7";
+ "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7";
+ "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7";
+ "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7";
+ "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp";
+ "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7";
+ "amazonka-config" = doDistribute super."amazonka-config_1_3_7";
+ "amazonka-core" = doDistribute super."amazonka-core_1_3_7";
+ "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7";
+ "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7";
+ "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7";
+ "amazonka-dms" = dontDistribute super."amazonka-dms";
+ "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7";
+ "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7";
+ "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7";
+ "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7";
+ "amazonka-ecr" = dontDistribute super."amazonka-ecr";
+ "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7";
+ "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7";
+ "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7";
+ "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7";
+ "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7";
+ "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7";
+ "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7";
+ "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7";
+ "amazonka-gamelift" = dontDistribute super."amazonka-gamelift";
+ "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7";
+ "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7";
+ "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7";
+ "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7";
+ "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7";
+ "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7";
+ "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7";
+ "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7";
+ "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7";
+ "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7";
+ "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7";
+ "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering";
+ "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7";
+ "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7";
+ "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7";
+ "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7";
+ "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7";
+ "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7";
+ "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7";
+ "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7";
+ "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7";
+ "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7";
+ "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7";
+ "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7";
+ "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7";
+ "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7";
+ "amazonka-support" = doDistribute super."amazonka-support_1_3_7";
+ "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7";
+ "amazonka-test" = doDistribute super."amazonka-test_1_3_7";
+ "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7";
+ "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7";
+ "ampersand" = dontDistribute super."ampersand";
+ "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" = dontDistribute super."android";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "animalcase" = dontDistribute super."animalcase";
+ "annah" = dontDistribute super."annah";
+ "annihilator" = dontDistribute super."annihilator";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansigraph" = dontDistribute super."ansigraph";
+ "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-field-json-th" = dontDistribute super."api-field-json-th";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = doDistribute super."apiary_1_4_5";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-http-client" = dontDistribute super."apiary-http-client";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "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";
+ "applicative-splice" = dontDistribute super."applicative-splice";
+ "apply-refact" = doDistribute super."apply-refact_0_1_0_0";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "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";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arena" = dontDistribute super."arena";
+ "arff" = dontDistribute super."arff";
+ "arghwxhaskell" = dontDistribute super."arghwxhaskell";
+ "argon" = doDistribute super."argon_0_4_0_0";
+ "argon2" = dontDistribute super."argon2";
+ "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" = dontDistribute super."arithmoi";
+ "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";
+ "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-flatten" = dontDistribute super."ascii-flatten";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = dontDistribute super."asn1-data";
+ "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-dejafu" = doDistribute super."async-dejafu_0_1_0_0";
+ "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";
+ "atndapi" = dontDistribute super."atndapi";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "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";
+ "atp-haskell" = dontDistribute super."atp-haskell";
+ "atrans" = dontDistribute super."atrans";
+ "attempt" = dontDistribute super."attempt";
+ "atto-lisp" = dontDistribute super."atto-lisp";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-conduit" = dontDistribute super."attoparsec-conduit";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "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";
+ "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";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "autoexporter" = dontDistribute super."autoexporter";
+ "automitive-cse" = dontDistribute super."automitive-cse";
+ "automotive-cse" = dontDistribute super."automotive-cse";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "avatar-generator" = dontDistribute super."avatar-generator";
+ "average" = dontDistribute super."average";
+ "avers-server" = doDistribute super."avers-server_0_0_3";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesome-prelude" = dontDistribute super."awesome-prelude";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "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";
+ "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";
+ "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-holiday-usa" = dontDistribute super."bank-holiday-usa";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = dontDistribute super."barecheck";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-prelude" = doDistribute super."base-prelude_0_1_21";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "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_5_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";
+ "bbi" = dontDistribute super."bbi";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beam" = dontDistribute super."beam";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "bench" = dontDistribute super."bench";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "bencoding" = dontDistribute super."bencoding";
+ "bento" = dontDistribute super."bento";
+ "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";
+ "bibdb" = dontDistribute super."bibdb";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bighugethesaurus" = dontDistribute super."bighugethesaurus";
+ "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";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-enum" = dontDistribute super."binary-enum";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "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";
+ "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-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" = doDistribute super."bindings-libzip_0_10_2";
+ "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-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-wlc" = dontDistribute super."bindings-wlc";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "bindynamic" = dontDistribute super."bindynamic";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bini" = dontDistribute super."bini";
+ "bio" = dontDistribute super."bio";
+ "biohazard" = dontDistribute super."biohazard";
+ "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit";
+ "biosff" = dontDistribute super."biosff";
+ "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-payment-channel" = dontDistribute super."bitcoin-payment-channel";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "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-bytestring" = dontDistribute super."bits-bytestring";
+ "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";
+ "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";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blatex" = dontDistribute super."blatex";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "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-shields" = dontDistribute super."blaze-shields";
+ "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" = dontDistribute super."bloodhound";
+ "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
+ "bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
+ "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";
+ "bond" = dontDistribute super."bond";
+ "bond-haskell" = dontDistribute super."bond-haskell";
+ "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler";
+ "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";
+ "boombox" = dontDistribute super."boombox";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "botpp" = dontDistribute super."botpp";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = doDistribute super."bower-json_0_7_0_0";
+ "bowntz" = dontDistribute super."bowntz";
+ "bpann" = dontDistribute super."bpann";
+ "braid" = dontDistribute super."braid";
+ "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";
+ "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-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "buffer-pipe" = dontDistribute super."buffer-pipe";
+ "buffon" = dontDistribute super."buffon";
+ "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";
+ "butterflies" = dontDistribute super."butterflies";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-show" = dontDistribute super."bytestring-show";
+ "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder";
+ "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_27_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" = doDistribute super."cabal-debian_4_32_3";
+ "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-info" = dontDistribute super."cabal-info";
+ "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-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "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";
+ "cacophony" = doDistribute super."cacophony_0_4_0";
+ "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";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camfort" = dontDistribute super."camfort";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-listen-http" = dontDistribute super."canteven-listen-http";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "canteven-template" = dontDistribute super."canteven-template";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "car-pool" = dontDistribute super."car-pool";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
+ "cartel" = doDistribute super."cartel_0_14_2_8";
+ "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
+ "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";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "casr-logbook" = dontDistribute super."casr-logbook";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "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";
+ "category-printf" = dontDistribute super."category-printf";
+ "category-traced" = dontDistribute super."category-traced";
+ "cayley-dickson" = dontDistribute super."cayley-dickson";
+ "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";
+ "cerberus" = dontDistribute super."cerberus";
+ "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";
+ "certificate" = dontDistribute super."certificate";
+ "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" = doDistribute super."cgi_3001_2_2_3";
+ "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";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "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-highlight" = dontDistribute super."cheapskate-highlight";
+ "cheapskate-lucid" = dontDistribute super."cheapskate-lucid";
+ "cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chorale" = dontDistribute super."chorale";
+ "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";
+ "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-rc5" = dontDistribute super."cipher-rc5";
+ "ciphersaber2" = dontDistribute super."ciphersaber2";
+ "circ" = dontDistribute super."circ";
+ "circlehs" = dontDistribute super."circlehs";
+ "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";
+ "clang-pure" = dontDistribute super."clang-pure";
+ "clanki" = dontDistribute super."clanki";
+ "clarifai" = dontDistribute super."clarifai";
+ "clash" = dontDistribute super."clash";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "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-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";
+ "cloben" = dontDistribute super."cloben";
+ "clock" = doDistribute super."clock_0_6_0_1";
+ "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";
+ "clumpiness" = dontDistribute super."clumpiness";
+ "cluss" = dontDistribute super."cluss";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmph" = dontDistribute super."cmph";
+ "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";
+ "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";
+ "color-counter" = dontDistribute super."color-counter";
+ "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";
+ "commander" = dontDistribute super."commander";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "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-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "compensated" = dontDistribute super."compensated";
+ "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-ltr" = dontDistribute super."compose-ltr";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "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" = dontDistribute super."concurrent-extra";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-rpc" = dontDistribute super."concurrent-rpc";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-utilities" = dontDistribute super."concurrent-utilities";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "cond" = dontDistribute super."cond";
+ "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-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-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec";
+ "conf" = dontDistribute super."conf";
+ "config-manager" = dontDistribute super."config-manager";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
+ "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-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";
+ "constraint-classes" = dontDistribute super."constraint-classes";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consumers" = dontDistribute super."consumers";
+ "container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
+ "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";
+ "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-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";
+ "convert" = dontDistribute super."convert";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "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";
+ "copilot-theorem" = dontDistribute super."copilot-theorem";
+ "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";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplex-hs" = dontDistribute super."cplex-hs";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_19_3";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "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";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "craze" = dontDistribute super."craze";
+ "crc" = dontDistribute super."crc";
+ "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-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = doDistribute super."cron_0_3_2";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-enigma" = dontDistribute super."crypto-enigma";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptohash" = doDistribute super."cryptohash_0_11_6";
+ "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
+ "cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
+ "cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
+ "cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
+ "cryptonite-openssl" = dontDistribute super."cryptonite-openssl";
+ "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";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-table" = dontDistribute super."csv-table";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "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";
+ "d3d11binding" = dontDistribute super."d3d11binding";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "danibot" = dontDistribute super."danibot";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = doDistribute super."darcs_2_10_3";
+ "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-base" = dontDistribute super."data-base";
+ "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-construction" = dontDistribute super."data-construction";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-extra" = dontDistribute super."data-default-extra";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
+ "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
+ "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
+ "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
+ "data-default-instances-text" = dontDistribute super."data-default-instances-text";
+ "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
+ "data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-embed" = dontDistribute super."data-embed";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extend-generic" = dontDistribute super."data-extend-generic";
+ "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-function-meld" = dontDistribute super."data-function-meld";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-json-token" = dontDistribute super."data-json-token";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layer" = dontDistribute super."data-layer";
+ "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-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-cse" = dontDistribute super."data-reify-cse";
+ "data-repr" = dontDistribute super."data-repr";
+ "data-result" = dontDistribute super."data-result";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-rtuple" = dontDistribute super."data-rtuple";
+ "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";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "dataurl" = dontDistribute super."dataurl";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawdle" = dontDistribute super."dawdle";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = doDistribute super."dbmigrations_1_0";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
+ "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-babel" = dontDistribute super."ddc-core-babel";
+ "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-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "debug-time" = dontDistribute super."debug-time";
+ "decepticons" = dontDistribute super."decepticons";
+ "decimal-arithmetic" = dontDistribute super."decimal-arithmetic";
+ "declarative" = doDistribute super."declarative_0_1_0_1";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deepcontrol" = dontDistribute super."deepcontrol";
+ "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" = doDistribute super."dejafu_0_2_0_0";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delay" = dontDistribute super."delay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delimiter-separated" = dontDistribute super."delimiter-separated";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
+ "dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
+ "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-monoid" = dontDistribute super."derive-monoid";
+ "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";
+ "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-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-reflex" = dontDistribute super."diagrams-reflex";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "diagrams-wx" = dontDistribute super."diagrams-wx";
+ "dialog" = dontDistribute super."dialog";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-gestalt" = dontDistribute super."diff-gestalt";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "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-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional-codata" = dontDistribute super."dimensional-codata";
+ "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";
+ "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discogs-haskell" = dontDistribute super."discogs-haskell";
+ "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";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-closure" = dontDistribute super."distributed-closure";
+ "distributed-process" = doDistribute super."distributed-process_0_5_5_1";
+ "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-ekg" = dontDistribute super."distributed-process-ekg";
+ "distributed-process-execution" = dontDistribute super."distributed-process-execution";
+ "distributed-process-extras" = dontDistribute super."distributed-process-extras";
+ "distributed-process-lifted" = dontDistribute super."distributed-process-lifted";
+ "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" = dontDistribute super."distributed-process-simplelocalnet";
+ "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";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "dixi" = doDistribute super."dixi_0_6_0_5";
+ "djembe" = dontDistribute super."djembe";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "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";
+ "doctest" = doDistribute super."doctest_0_10_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-parser" = dontDistribute super."dom-parser";
+ "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" = doDistribute super."dotenv_0_1_0_9";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dotnet-timespan" = dontDistribute super."dotnet-timespan";
+ "double-metaphone" = dontDistribute super."double-metaphone";
+ "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";
+ "dpor" = dontDistribute super."dpor";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe";
+ "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";
+ "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";
+ "dynobud" = dontDistribute super."dynobud";
+ "dywapitchtrack" = dontDistribute super."dywapitchtrack";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-bitcoin" = dontDistribute super."easy-bitcoin";
+ "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";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editpipe" = dontDistribute super."editpipe";
+ "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";
+ "eithers" = dontDistribute super."eithers";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "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";
+ "elision" = dontDistribute super."elision";
+ "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
+ "elm-build-lib" = dontDistribute super."elm-build-lib";
+ "elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
+ "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";
+ "elo" = dontDistribute super."elo";
+ "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-json" = dontDistribute super."email-validate-json";
+ "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-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumerate" = dontDistribute super."enumerate";
+ "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";
+ "envelope" = dontDistribute super."envelope";
+ "envparse" = dontDistribute super."envparse";
+ "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";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "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-analyze" = dontDistribute super."error-analyze";
+ "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";
+ "error-util" = dontDistribute super."error-util";
+ "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance";
+ "ersatz" = dontDistribute super."ersatz";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = doDistribute super."ether_0_3_1_1";
+ "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-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";
+ "eventsourced" = dontDistribute super."eventsourced";
+ "eventstore" = doDistribute super."eventstore_0_10_0_2";
+ "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" = doDistribute super."exact-pi_0_4_1_1";
+ "exception-hierarchy" = dontDistribute super."exception-hierarchy";
+ "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";
+ "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";
+ "existential" = dontDistribute super."existential";
+ "exists" = dontDistribute super."exists";
+ "exit-codes" = dontDistribute super."exit-codes";
+ "exp-extended" = dontDistribute super."exp-extended";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "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";
+ "external-sort" = dontDistribute super."external-sort";
+ "extra" = doDistribute super."extra_1_4_5";
+ "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";
+ "fadno-braids" = dontDistribute super."fadno-braids";
+ "failable-list" = dontDistribute super."failable-list";
+ "failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "fast-builder" = doDistribute super."fast-builder_0_0_0_4";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "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";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fca" = dontDistribute super."fca";
+ "fcache" = dontDistribute super."fcache";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "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";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "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";
+ "filediff" = dontDistribute super."filediff";
+ "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-clumpiness" = dontDistribute super."find-clumpiness";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "finite-typelits" = dontDistribute super."finite-typelits";
+ "first-and-last" = dontDistribute super."first-and-last";
+ "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-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-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixfile" = dontDistribute super."fixfile";
+ "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-maybe" = dontDistribute super."flat-maybe";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flat-tex" = dontDistribute super."flat-tex";
+ "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";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "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";
+ "fltkhs-demos" = dontDistribute super."fltkhs-demos";
+ "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos";
+ "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples";
+ "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fn" = doDistribute super."fn_0_2_0_2";
+ "fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_1_6";
+ "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";
+ "fordo" = dontDistribute super."fordo";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "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";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "formura" = dontDistribute super."formura";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "foscam-directory" = dontDistribute super."foscam-directory";
+ "foscam-filename" = dontDistribute super."foscam-filename";
+ "foscam-sort" = dontDistribute super."foscam-sort";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = dontDistribute super."fpco-api";
+ "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";
+ "freddy" = dontDistribute super."freddy";
+ "free-concurrent" = dontDistribute super."free-concurrent";
+ "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";
+ "free-vl" = dontDistribute super."free-vl";
+ "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";
+ "fresco-binding" = dontDistribute super."fresco-binding";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friday-scale-dct" = dontDistribute super."friday-scale-dct";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frown" = dontDistribute super."frown";
+ "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";
+ "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";
+ "funbot-git-hook" = dontDistribute super."funbot-git-hook";
+ "funcons-tools" = dontDistribute super."funcons-tools";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functional-kmp" = dontDistribute super."functional-kmp";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functor-utils" = dontDistribute super."functor-utils";
+ "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";
+ "gdo" = dontDistribute super."gdo";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gelatin" = dontDistribute super."gelatin";
+ "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-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_9_0";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generics-sop-lens" = dontDistribute super."generics-sop-lens";
+ "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";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geo-resolver" = dontDistribute super."geo-resolver";
+ "geo-uk" = dontDistribute super."geo-uk";
+ "geocalc" = dontDistribute super."geocalc";
+ "geocode-google" = dontDistribute super."geocode-google";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "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-dump-tree" = dontDistribute super."ghc-dump-tree";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-options" = dontDistribute super."ghc-options";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "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-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "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_5_1";
+ "ghcjs-ajax" = dontDistribute super."ghcjs-ajax";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-hplay" = dontDistribute super."ghcjs-hplay";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gi-atk" = dontDistribute super."gi-atk";
+ "gi-cairo" = dontDistribute super."gi-cairo";
+ "gi-gdk" = dontDistribute super."gi-gdk";
+ "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf";
+ "gi-gio" = dontDistribute super."gi-gio";
+ "gi-girepository" = dontDistribute super."gi-girepository";
+ "gi-glib" = dontDistribute super."gi-glib";
+ "gi-gobject" = dontDistribute super."gi-gobject";
+ "gi-gst" = dontDistribute super."gi-gst";
+ "gi-gstaudio" = dontDistribute super."gi-gstaudio";
+ "gi-gstbase" = dontDistribute super."gi-gstbase";
+ "gi-gstvideo" = dontDistribute super."gi-gstvideo";
+ "gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
+ "gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
+ "gi-notify" = dontDistribute super."gi-notify";
+ "gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
+ "gi-poppler" = dontDistribute super."gi-poppler";
+ "gi-soup" = dontDistribute super."gi-soup";
+ "gi-vte" = dontDistribute super."gi-vte";
+ "gi-webkit" = dontDistribute super."gi-webkit";
+ "gi-webkit2" = dontDistribute super."gi-webkit2";
+ "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "giphy-api" = dontDistribute super."giphy-api";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = doDistribute super."git-annex_6_20160114";
+ "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-jump" = dontDistribute super."git-jump";
+ "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";
+ "gitHUD" = dontDistribute super."gitHUD";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-release" = dontDistribute super."github-release";
+ "github-utils" = dontDistribute super."github-utils";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
+ "givegif" = dontDistribute super."givegif";
+ "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";
+ "glicko" = dontDistribute super."glicko";
+ "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";
+ "gnss-converters" = dontDistribute super."gnss-converters";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "goa" = dontDistribute super."goa";
+ "goal-core" = dontDistribute super."goal-core";
+ "goal-geometry" = dontDistribute super."goal-geometry";
+ "goal-probability" = dontDistribute super."goal-probability";
+ "goal-simulation" = dontDistribute super."goal-simulation";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "gogol" = dontDistribute super."gogol";
+ "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer";
+ "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller";
+ "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer";
+ "gogol-admin-directory" = dontDistribute super."gogol-admin-directory";
+ "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration";
+ "gogol-admin-reports" = dontDistribute super."gogol-admin-reports";
+ "gogol-adsense" = dontDistribute super."gogol-adsense";
+ "gogol-adsense-host" = dontDistribute super."gogol-adsense-host";
+ "gogol-affiliates" = dontDistribute super."gogol-affiliates";
+ "gogol-analytics" = dontDistribute super."gogol-analytics";
+ "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise";
+ "gogol-android-publisher" = dontDistribute super."gogol-android-publisher";
+ "gogol-appengine" = dontDistribute super."gogol-appengine";
+ "gogol-apps-activity" = dontDistribute super."gogol-apps-activity";
+ "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar";
+ "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing";
+ "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller";
+ "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks";
+ "gogol-appstate" = dontDistribute super."gogol-appstate";
+ "gogol-autoscaler" = dontDistribute super."gogol-autoscaler";
+ "gogol-bigquery" = dontDistribute super."gogol-bigquery";
+ "gogol-billing" = dontDistribute super."gogol-billing";
+ "gogol-blogger" = dontDistribute super."gogol-blogger";
+ "gogol-books" = dontDistribute super."gogol-books";
+ "gogol-civicinfo" = dontDistribute super."gogol-civicinfo";
+ "gogol-classroom" = dontDistribute super."gogol-classroom";
+ "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace";
+ "gogol-compute" = dontDistribute super."gogol-compute";
+ "gogol-container" = dontDistribute super."gogol-container";
+ "gogol-core" = dontDistribute super."gogol-core";
+ "gogol-customsearch" = dontDistribute super."gogol-customsearch";
+ "gogol-dataflow" = dontDistribute super."gogol-dataflow";
+ "gogol-datastore" = dontDistribute super."gogol-datastore";
+ "gogol-debugger" = dontDistribute super."gogol-debugger";
+ "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager";
+ "gogol-dfareporting" = dontDistribute super."gogol-dfareporting";
+ "gogol-discovery" = dontDistribute super."gogol-discovery";
+ "gogol-dns" = dontDistribute super."gogol-dns";
+ "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids";
+ "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search";
+ "gogol-drive" = dontDistribute super."gogol-drive";
+ "gogol-fitness" = dontDistribute super."gogol-fitness";
+ "gogol-fonts" = dontDistribute super."gogol-fonts";
+ "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch";
+ "gogol-fusiontables" = dontDistribute super."gogol-fusiontables";
+ "gogol-games" = dontDistribute super."gogol-games";
+ "gogol-games-configuration" = dontDistribute super."gogol-games-configuration";
+ "gogol-games-management" = dontDistribute super."gogol-games-management";
+ "gogol-genomics" = dontDistribute super."gogol-genomics";
+ "gogol-gmail" = dontDistribute super."gogol-gmail";
+ "gogol-groups-migration" = dontDistribute super."gogol-groups-migration";
+ "gogol-groups-settings" = dontDistribute super."gogol-groups-settings";
+ "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit";
+ "gogol-latencytest" = dontDistribute super."gogol-latencytest";
+ "gogol-logging" = dontDistribute super."gogol-logging";
+ "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate";
+ "gogol-maps-engine" = dontDistribute super."gogol-maps-engine";
+ "gogol-mirror" = dontDistribute super."gogol-mirror";
+ "gogol-monitoring" = dontDistribute super."gogol-monitoring";
+ "gogol-oauth2" = dontDistribute super."gogol-oauth2";
+ "gogol-pagespeed" = dontDistribute super."gogol-pagespeed";
+ "gogol-partners" = dontDistribute super."gogol-partners";
+ "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner";
+ "gogol-plus" = dontDistribute super."gogol-plus";
+ "gogol-plus-domains" = dontDistribute super."gogol-plus-domains";
+ "gogol-prediction" = dontDistribute super."gogol-prediction";
+ "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon";
+ "gogol-pubsub" = dontDistribute super."gogol-pubsub";
+ "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress";
+ "gogol-replicapool" = dontDistribute super."gogol-replicapool";
+ "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater";
+ "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager";
+ "gogol-resourceviews" = dontDistribute super."gogol-resourceviews";
+ "gogol-shopping-content" = dontDistribute super."gogol-shopping-content";
+ "gogol-siteverification" = dontDistribute super."gogol-siteverification";
+ "gogol-spectrum" = dontDistribute super."gogol-spectrum";
+ "gogol-sqladmin" = dontDistribute super."gogol-sqladmin";
+ "gogol-storage" = dontDistribute super."gogol-storage";
+ "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer";
+ "gogol-tagmanager" = dontDistribute super."gogol-tagmanager";
+ "gogol-taskqueue" = dontDistribute super."gogol-taskqueue";
+ "gogol-translate" = dontDistribute super."gogol-translate";
+ "gogol-urlshortener" = dontDistribute super."gogol-urlshortener";
+ "gogol-useraccounts" = dontDistribute super."gogol-useraccounts";
+ "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools";
+ "gogol-youtube" = dontDistribute super."gogol-youtube";
+ "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics";
+ "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting";
+ "gooey" = dontDistribute super."gooey";
+ "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";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gore-and-ash" = dontDistribute super."gore-and-ash";
+ "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor";
+ "gore-and-ash-async" = dontDistribute super."gore-and-ash-async";
+ "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo";
+ "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw";
+ "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging";
+ "gore-and-ash-network" = dontDistribute super."gore-and-ash-network";
+ "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl";
+ "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpio" = dontDistribute super."gpio";
+ "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_2_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";
+ "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";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
+ "grasp" = dontDistribute super."grasp";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "graylog" = dontDistribute super."graylog";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "gremlin-haskell" = dontDistribute super."gremlin-haskell";
+ "greplicate" = dontDistribute super."greplicate";
+ "grid" = dontDistribute super."grid";
+ "gridfs" = dontDistribute super."gridfs";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groundhog-converters" = dontDistribute super."groundhog-converters";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "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-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-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-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";
+ "guid" = dontDistribute super."guid";
+ "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";
+ "hPDB-examples" = dontDistribute super."hPDB-examples";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hScraper" = dontDistribute super."hScraper";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
+ "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-diff" = dontDistribute super."hackage-diff";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-processing" = dontDistribute super."hackage-processing";
+ "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";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "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";
+ "hahp" = dontDistribute super."hahp";
+ "haiji" = dontDistribute super."haiji";
+ "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" = doDistribute super."hakyll_4_7_5_2";
+ "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-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
+ "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-filestore" = dontDistribute super."hakyll-filestore";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "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";
+ "handa-opengl" = dontDistribute super."handa-opengl";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "handwriting" = dontDistribute super."handwriting";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "haphviz" = dontDistribute super."haphviz";
+ "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-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-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "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";
+ "hapstone" = dontDistribute super."hapstone";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hardware-edsl" = dontDistribute super."hardware-edsl";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "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-generics" = dontDistribute super."hashable-generics";
+ "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" = doDistribute super."haskeline_0_7_2_3";
+ "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-exp-parser" = dontDistribute super."haskell-exp-parser";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-gi" = dontDistribute super."haskell-gi";
+ "haskell-gi-base" = dontDistribute super."haskell-gi-base";
+ "haskell-import-graph" = dontDistribute super."haskell-import-graph";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-kubernetes" = dontDistribute super."haskell-kubernetes";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpfr" = dontDistribute super."haskell-mpfr";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = dontDistribute super."haskell-names";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "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-read-editor" = dontDistribute super."haskell-read-editor";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-tor" = dontDistribute super."haskell-tor";
+ "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";
+ "haskell2010" = dontDistribute super."haskell2010";
+ "haskell98" = dontDistribute super."haskell98";
+ "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";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-core" = dontDistribute super."haskoin-core";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-node" = dontDistribute super."haskoin-node";
+ "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_19_6";
+ "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative";
+ "hasql-pool" = dontDistribute super."hasql-pool";
+ "hasql-postgres" = dontDistribute super."hasql-postgres";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hasql-th" = dontDistribute super."hasql-th";
+ "hasql-transaction" = dontDistribute super."hasql-transaction";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-gapi" = dontDistribute super."haste-gapi";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hastily" = dontDistribute super."hastily";
+ "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-amazonka" = dontDistribute super."haxl-amazonka";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_11_1_4";
+ "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";
+ "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";
+ "hcoap" = dontDistribute super."hcoap";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "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_3_0";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "hdr-histogram" = dontDistribute super."hdr-histogram";
+ "headergen" = dontDistribute super."headergen";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "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-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";
+ "helix" = dontDistribute super."helix";
+ "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";
+ "heredocs" = dontDistribute super."heredocs";
+ "herf-time" = dontDistribute super."herf-time";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets";
+ "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";
+ "hesh" = dontDistribute super."hesh";
+ "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";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "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";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfmt" = dontDistribute super."hfmt";
+ "hfoil" = dontDistribute super."hfoil";
+ "hformat" = dontDistribute super."hformat";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "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";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrev" = dontDistribute super."hgrev";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hi3status" = dontDistribute super."hi3status";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "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";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindley-milner" = dontDistribute super."hindley-milner";
+ "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-bytestring" = dontDistribute super."hinotify-bytestring";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_3";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hip" = dontDistribute super."hip";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipchat-hs" = dontDistribute super."hipchat-hs";
+ "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";
+ "hit-graph" = dontDistribute super."hit-graph";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_5_3";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hkdf" = dontDistribute super."hkdf";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlint" = doDistribute super."hlint_1_9_31";
+ "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-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";
+ "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";
+ "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-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_17_1";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hoppy-generator" = dontDistribute super."hoppy-generator";
+ "hoppy-runtime" = dontDistribute super."hoppy-runtime";
+ "hoppy-std" = dontDistribute super."hoppy-std";
+ "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-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "houseman" = dontDistribute super."houseman";
+ "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";
+ "hpath" = dontDistribute super."hpath";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hpdft" = dontDistribute super."hpdft";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = doDistribute super."hprotoc_2_1_12";
+ "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";
+ "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_23";
+ "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" = doDistribute super."hsebaysdk_0_3_1_0";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "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";
+ "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-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "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-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "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-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-slow" = dontDistribute super."hspec-slow";
+ "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_5";
+ "hspec2" = dontDistribute super."hspec2";
+ "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";
+ "hsseccomp" = dontDistribute super."hsseccomp";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hssqlppp-th" = dontDistribute super."hssqlppp-th";
+ "hstats" = dontDistribute super."hstats";
+ "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-xhtml" = dontDistribute super."hsx-xhtml";
+ "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-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-parse" = dontDistribute super."html-parse";
+ "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-attoparsec" = dontDistribute super."http-attoparsec";
+ "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-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-session" = dontDistribute super."http-client-session";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-dispatch" = dontDistribute super."http-dispatch";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kinder" = dontDistribute super."http-kinder";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-response-decoder" = dontDistribute super."http-response-decoder";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-test" = dontDistribute super."http-test";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = doDistribute super."http2_1_4_5";
+ "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";
+ "huckleberry" = dontDistribute super."huckleberry";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
+ "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";
+ "hw-bits" = dontDistribute super."hw-bits";
+ "hw-conduit" = dontDistribute super."hw-conduit";
+ "hw-diagnostics" = dontDistribute super."hw-diagnostics";
+ "hw-json" = dontDistribute super."hw-json";
+ "hw-parser" = dontDistribute super."hw-parser";
+ "hw-prim" = dontDistribute super."hw-prim";
+ "hw-rankselect" = dontDistribute super."hw-rankselect";
+ "hw-succinct" = dontDistribute super."hw-succinct";
+ "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-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "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";
+ "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";
+ "hylogen" = dontDistribute super."hylogen";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hypher" = dontDistribute super."hypher";
+ "hzaif" = dontDistribute super."hzaif";
+ "hzk" = dontDistribute super."hzk";
+ "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";
+ "ibus-hs" = dontDistribute super."ibus-hs";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna" = dontDistribute super."idna";
+ "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" = doDistribute super."ig_0_6_1";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imap" = dontDistribute super."imap";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
+ "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-logging" = dontDistribute super."implicit-logging";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "impossible" = dontDistribute super."impossible";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "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";
+ "inf-interval" = dontDistribute super."inf-interval";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-java" = dontDistribute super."inline-java";
+ "inquire" = dontDistribute super."inquire";
+ "insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
+ "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";
+ "interlude-l" = dontDistribute super."interlude-l";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "interruptible" = dontDistribute super."interruptible";
+ "interspersed" = dontDistribute super."interspersed";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invertible" = dontDistribute super."invertible";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-machine" = dontDistribute super."io-machine";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "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" = dontDistribute super."ip";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = doDistribute super."irc-client_0_2_6_0";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-dcc" = dontDistribute super."irc-dcc";
+ "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";
+ "irc-fun-types" = dontDistribute super."irc-fun-types";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iridium" = dontDistribute super."iridium";
+ "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";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "isohunt" = dontDistribute super."isohunt";
+ "ispositive" = dontDistribute super."ispositive";
+ "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-artifact" = dontDistribute super."ivory-artifact";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-eval" = dontDistribute super."ivory-eval";
+ "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-serialize" = dontDistribute super."ivory-serialize";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "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-poker" = dontDistribute super."java-poker";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javaclass" = dontDistribute super."javaclass";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-ast" = dontDistribute super."json-ast";
+ "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder";
+ "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck";
+ "json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
+ "json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
+ "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-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";
+ "juandelacosa" = dontDistribute super."juandelacosa";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jump" = dontDistribute super."jump";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = doDistribute super."jwt_0_6_0";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kanji" = dontDistribute super."kanji";
+ "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";
+ "katip" = dontDistribute super."katip";
+ "katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
+ "katt" = dontDistribute super."katt";
+ "kazura-queue" = dontDistribute super."kazura-queue";
+ "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-reactivelenses" = dontDistribute super."keera-hails-reactivelenses";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = doDistribute super."keycode_0_1_1";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "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-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "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-compiler" = dontDistribute super."lambdacube-compiler";
+ "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-ir" = dontDistribute super."lambdacube-ir";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdaya-bus" = dontDistribute super."lambdaya-bus";
+ "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" = doDistribute super."language-c_0_4_7";
+ "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-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-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_14_7";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "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" = doDistribute super."language-thrift_0_7_0_1";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "language-webidl" = dontDistribute super."language-webidl";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "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-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";
+ "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";
+ "leancheck" = dontDistribute super."leancheck";
+ "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-datetime" = dontDistribute super."lens-datetime";
+ "lens-prelude" = dontDistribute super."lens-prelude";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "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";
+ "lens-utils" = dontDistribute super."lens-utils";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lenz" = dontDistribute super."lenz";
+ "lenz-template" = dontDistribute super."lenz-template";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lfst" = dontDistribute super."lfst";
+ "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";
+ "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";
+ "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";
+ "libravatar" = dontDistribute super."libravatar";
+ "libroman" = dontDistribute super."libroman";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxls" = dontDistribute super."libxls";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lift-generics" = dontDistribute super."lift-generics";
+ "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-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";
+ "link-relations" = dontDistribute super."link-relations";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linode" = dontDistribute super."linode";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "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";
+ "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
+ "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "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";
+ "list-zip-def" = dontDistribute super."list-zip-def";
+ "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";
+ "lmonad" = dontDistribute super."lmonad";
+ "lmonad-yesod" = dontDistribute super."lmonad-yesod";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located" = dontDistribute super."located";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "locked-poll" = dontDistribute super."locked-poll";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = dontDistribute super."logfloat";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-effect" = dontDistribute super."logging-effect";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logict-state" = dontDistribute super."logict-state";
+ "logplex-parse" = dontDistribute super."logplex-parse";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "lol" = dontDistribute super."lol";
+ "lol-apps" = dontDistribute super."lol-apps";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "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";
+ "lp-diagrams" = dontDistribute super."lp-diagrams";
+ "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luis-client" = dontDistribute super."luis-client";
+ "luka" = dontDistribute super."luka";
+ "luminance" = doDistribute super."luminance_0_9_1_2";
+ "luminance-samples" = doDistribute super."luminance-samples_0_9_1";
+ "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-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "macbeth-lib" = dontDistribute super."macbeth-lib";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines-binary" = dontDistribute super."machines-binary";
+ "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";
+ "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" = doDistribute super."managed_1_0_3";
+ "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";
+ "mandulia" = dontDistribute super."mandulia";
+ "manifold-random" = dontDistribute super."manifold-random";
+ "manifolds" = dontDistribute super."manifolds";
+ "map-exts" = dontDistribute super."map-exts";
+ "mappy" = dontDistribute super."mappy";
+ "marionetta" = dontDistribute super."marionetta";
+ "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-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";
+ "matcher" = dontDistribute super."matcher";
+ "matchers" = dontDistribute super."matchers";
+ "math-functions" = doDistribute super."math-functions_0_1_6_0";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathista" = dontDistribute super."mathista";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "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";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "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";
+ "mdapi" = dontDistribute super."mdapi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mdp" = dontDistribute super."mdp";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "megaparsec" = doDistribute super."megaparsec_4_3_0";
+ "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";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memory" = doDistribute super."memory_0_11";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "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";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mezzolens" = dontDistribute super."mezzolens";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = doDistribute super."microlens_0_4_2_1";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1";
+ "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1";
+ "microlens-th" = doDistribute super."microlens-th_0_3_0_2";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midair" = dontDistribute super."midair";
+ "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-string" = dontDistribute super."mime-string";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minilens" = dontDistribute super."minilens";
+ "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";
+ "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";
+ "mnist-idx" = dontDistribute super."mnist-idx";
+ "moan" = dontDistribute super."moan";
+ "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";
+ "mohws" = dontDistribute super."mohws";
+ "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-connect" = dontDistribute super."monad-connect";
+ "monad-dijkstra" = dontDistribute super."monad-dijkstra";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-hash" = dontDistribute super."monad-hash";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-log" = dontDistribute super."monad-log";
+ "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-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-ste" = dontDistribute super."monad-ste";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = doDistribute super."monad-time_0_1";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = doDistribute super."monad-unlift_0_1_2_0";
+ "monad-unlift-ref" = dontDistribute super."monad-unlift-ref";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "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-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mondo" = dontDistribute super."mondo";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "monoid-absorbing" = dontDistribute super."monoid-absorbing";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "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" = doDistribute super."morte_1_4_2";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mountpoints" = dontDistribute super."mountpoints";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mpris" = dontDistribute super."mpris";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "mrm" = dontDistribute super."mrm";
+ "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";
+ "msh" = dontDistribute super."msh";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = dontDistribute super."mtlparse";
+ "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";
+ "mulang" = dontDistribute super."mulang";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiaddr" = dontDistribute super."multiaddr";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "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-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur" = dontDistribute super."murmur";
+ "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-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "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-probability" = doDistribute super."mwc-probability_1_0_3";
+ "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-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-erl" = dontDistribute super."nano-erl";
+ "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";
+ "nanovg" = dontDistribute super."nanovg";
+ "nanq" = dontDistribute super."nanq";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "native" = dontDistribute super."native";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "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";
+ "neat" = dontDistribute super."neat";
+ "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-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-address" = dontDistribute super."network-address";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "network-conduit-tls" = doDistribute super."network-conduit-tls_1_2_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-hans" = dontDistribute super."network-hans";
+ "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-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "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-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2";
+ "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-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";
+ "ngx-export" = dontDistribute super."ngx-export";
+ "niagra" = dontDistribute super."niagra";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nist-beacon" = dontDistribute super."nist-beacon";
+ "nitro" = dontDistribute super."nitro";
+ "nix-eval" = dontDistribute super."nix-eval";
+ "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-buffering-workaround" = dontDistribute super."no-buffering-workaround";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyse" = dontDistribute super."nofib-analyse";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonempty-alternative" = dontDistribute super."nonempty-alternative";
+ "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";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
+ "number" = dontDistribute super."number";
+ "number-length" = dontDistribute super."number-length";
+ "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-ranges" = dontDistribute super."numeric-ranges";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
+ "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";
+ "oanda-rest-api" = dontDistribute super."oanda-rest-api";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = doDistribute super."objective_1_0_5";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octane" = dontDistribute super."octane";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "oidc-client" = dontDistribute super."oidc-client";
+ "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";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "opaleye-trans" = dontDistribute super."opaleye-trans";
+ "open-haddock" = dontDistribute super."open-haddock";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-signals" = dontDistribute super."open-signals";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencog-atomspace" = dontDistribute super."opencog-atomspace";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
+ "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator";
+ "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";
+ "opensource" = dontDistribute super."opensource";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "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-alacarte" = dontDistribute super."operational-alacarte";
+ "operational-extra" = dontDistribute super."operational-extra";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "option" = dontDistribute super."option";
+ "optional" = dontDistribute super."optional";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
+ "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-statistic-tree" = dontDistribute super."order-statistic-tree";
+ "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";
+ "oscpacking" = dontDistribute super."oscpacking";
+ "osm-conduit" = dontDistribute super."osm-conduit";
+ "osm-download" = dontDistribute super."osm-download";
+ "oso2pdf" = dontDistribute super."oso2pdf";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overloaded-records" = dontDistribute super."overloaded-records";
+ "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";
+ "packman" = dontDistribute super."packman";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_16_0_2";
+ "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-include" = dontDistribute super."pandoc-include";
+ "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "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";
+ "paranoia" = dontDistribute super."paranoia";
+ "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_9";
+ "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-trace" = dontDistribute super."parsec-trace";
+ "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";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parser241" = dontDistribute super."parser241";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partage" = dontDistribute super."partage";
+ "partial" = dontDistribute super."partial";
+ "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-io" = doDistribute super."path-io_0_2_0";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "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-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-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "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";
+ "perfecthash" = dontDistribute super."perfecthash";
+ "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";
+ "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
+ "persistent-audit" = dontDistribute super."persistent-audit";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-database-url" = dontDistribute super."persistent-database-url";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-iproute" = dontDistribute super."persistent-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "persistent-template" = doDistribute super."persistent-template_2_1_8";
+ "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";
+ "pg-store" = dontDistribute super."pg-store";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
+ "phoityne-vscode" = dontDistribute super."phoityne-vscode";
+ "phone-numbers" = dontDistribute super."phone-numbers";
+ "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";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pinchot" = doDistribute super."pinchot_0_6_0_0";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bzip" = dontDistribute super."pipes-bzip";
+ "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3";
+ "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-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple";
+ "pipes-transduce" = dontDistribute super."pipes-transduce";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "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";
+ "pitchtrack" = dontDistribute super."pitchtrack";
+ "pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "plan-b" = dontDistribute super."plan-b";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plist-buddy" = dontDistribute super."plist-buddy";
+ "plivo" = dontDistribute super."plivo";
+ "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";
+ "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-configfile" = dontDistribute super."polar-configfile";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-control" = dontDistribute super."poly-control";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polymap" = dontDistribute super."polymap";
+ "polynom" = dontDistribute super."polynom";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pong-server" = dontDistribute super."pong-server";
+ "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";
+ "pool-conduit" = dontDistribute super."pool-conduit";
+ "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-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-connector" = dontDistribute super."postgresql-connector";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-error-codes" = dontDistribute super."postgresql-error-codes";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "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-transactional" = dontDistribute super."postgresql-transactional";
+ "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-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "predicates" = dontDistribute super."predicates";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-compat" = dontDistribute super."prelude-compat";
+ "prelude-edsl" = dontDistribute super."prelude-edsl";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "prelude2010" = dontDistribute super."prelude2010";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "present" = dontDistribute super."present";
+ "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-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-spoon" = dontDistribute super."prim-spoon";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive-simd" = dontDistribute super."primitive-simd";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
+ "print-debugger" = dontDistribute super."print-debugger";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printf-safe" = dontDistribute super."printf-safe";
+ "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-conduit" = dontDistribute super."process-conduit";
+ "process-extras" = doDistribute super."process-extras_0_3_3_7";
+ "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_3_1";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prologue" = dontDistribute super."prologue";
+ "prometheus" = dontDistribute super."prometheus";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "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-native" = dontDistribute super."protobuf-native";
+ "protobuf-simple" = dontDistribute super."protobuf-simple";
+ "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12";
+ "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "protolude" = dontDistribute super."protolude";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxied" = dontDistribute super."proxied";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = doDistribute super."psc-ide_0_5_0";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psql-helpers" = dontDistribute super."psql-helpers";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = doDistribute super."publicsuffix_0_20151212";
+ "publicsuffixlist" = dontDistribute super."publicsuffixlist";
+ "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";
+ "punycode" = dontDistribute super."punycode";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "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" = doDistribute super."purescript_0_7_6_1";
+ "purescript-bridge" = dontDistribute super."purescript-bridge";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "pursuit-client" = dontDistribute super."pursuit-client";
+ "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";
+ "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";
+ "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";
+ "qed" = dontDistribute super."qed";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "qt" = dontDistribute super."qt";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "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";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quick-schema" = dontDistribute super."quick-schema";
+ "quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "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-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = dontDistribute super."quickpull";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quickterm" = dontDistribute super."quickterm";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-binary" = dontDistribute super."quiver-binary";
+ "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-groups" = dontDistribute super."quiver-groups";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quiver-instances" = dontDistribute super."quiver-instances";
+ "quiver-interleave" = dontDistribute super."quiver-interleave";
+ "quiver-sort" = dontDistribute super."quiver-sort";
+ "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_26_0_6";
+ "rainbow-tests" = dontDistribute super."rainbow-tests";
+ "rainbox" = doDistribute super."rainbox_0_18_0_4";
+ "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-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";
+ "random-tree" = dontDistribute super."random-tree";
+ "random-variates" = dontDistribute super."random-variates";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratel" = dontDistribute super."ratel";
+ "ratel-wai" = dontDistribute super."ratel-wai";
+ "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";
+ "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server";
+ "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-sdl2" = dontDistribute super."reactive-banana-sdl2";
+ "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";
+ "reactivity" = dontDistribute super."reactivity";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "read-env-var" = dontDistribute super."read-env-var";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "readshp" = dontDistribute super."readshp";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "rebase" = dontDistribute super."rebase";
+ "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";
+ "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" = doDistribute super."redis-io_0_5_2";
+ "redis-job-queue" = dontDistribute super."redis-job-queue";
+ "redis-resp" = doDistribute super."redis-resp_0_3_2";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reedsolomon" = dontDistribute super."reedsolomon";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-animation" = dontDistribute super."reflex-animation";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-orphans" = dontDistribute super."reflex-orphans";
+ "reflex-transformers" = dontDistribute super."reflex-transformers";
+ "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-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-type" = dontDistribute super."regex-type";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr" = dontDistribute super."regexpr";
+ "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";
+ "register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
+ "regress" = dontDistribute super."regress";
+ "regular" = dontDistribute super."regular";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "regular-xmlpickler" = dontDistribute super."regular-xmlpickler";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "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";
+ "remote-json" = dontDistribute super."remote-json";
+ "remote-json-client" = dontDistribute super."remote-json-client";
+ "remote-json-server" = dontDistribute super."remote-json-server";
+ "remote-monad" = dontDistribute super."remote-monad";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "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-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";
+ "reqcatcher" = dontDistribute super."reqcatcher";
+ "request-monad" = dontDistribute super."request-monad";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-pool-monad" = dontDistribute super."resource-pool-monad";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "respond" = dontDistribute super."respond";
+ "rest-core" = doDistribute super."rest-core_0_37";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_19_0_1";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-arguments" = dontDistribute super."reverse-arguments";
+ "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" = doDistribute super."riak_0_9_1_1";
+ "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0";
+ "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";
+ "rlist" = dontDistribute super."rlist";
+ "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-trie" = dontDistribute super."rose-trie";
+ "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";
+ "rss-conduit" = dontDistribute super."rss-conduit";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtcm" = dontDistribute super."rtcm";
+ "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";
+ "s-cargot" = dontDistribute super."s-cargot";
+ "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-length" = dontDistribute super."safe-length";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "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";
+ "sampling" = dontDistribute super."sampling";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandlib" = dontDistribute super."sandlib";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sarsi" = dontDistribute super."sarsi";
+ "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";
+ "sbvPlugin" = dontDistribute super."sbvPlugin";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = doDistribute super."scalpel_0_2_1_1";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scanner" = dontDistribute super."scanner";
+ "scanner-attoparsec" = dontDistribute super."scanner-attoparsec";
+ "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_10_2";
+ "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-params-parser" = dontDistribute super."scotty-params-parser";
+ "scotty-resource" = dontDistribute super."scotty-resource";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scotty-view" = dontDistribute super."scotty-view";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scrape-changes" = dontDistribute super."scrape-changes";
+ "scrobble" = dontDistribute super."scrobble";
+ "scroll" = dontDistribute super."scroll";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2-cairo" = dontDistribute super."sdl2-cairo";
+ "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
+ "sdl2-compositor" = dontDistribute super."sdl2-compositor";
+ "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" = doDistribute super."second-transfer_0_7_1_0";
+ "secp256k1" = dontDistribute super."secp256k1";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "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";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver-range" = dontDistribute super."semver-range";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensei" = dontDistribute super."sensei";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "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";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
+ "serv" = dontDistribute super."serv";
+ "serv-wai" = dontDistribute super."serv-wai";
+ "servant" = doDistribute super."servant_0_4_4_7";
+ "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7";
+ "servant-cassava" = dontDistribute super."servant-cassava";
+ "servant-client" = doDistribute super."servant-client_0_4_4_7";
+ "servant-csharp" = dontDistribute super."servant-csharp";
+ "servant-docs" = doDistribute super."servant-docs_0_4_4_7";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-elm" = dontDistribute super."servant-elm";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-foreign" = dontDistribute super."servant-foreign";
+ "servant-github" = dontDistribute super."servant-github";
+ "servant-haxl-client" = dontDistribute super."servant-haxl-client";
+ "servant-js" = dontDistribute super."servant-js";
+ "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-quickcheck" = dontDistribute super."servant-quickcheck";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = doDistribute super."servant-server_0_4_4_7";
+ "servant-swagger" = doDistribute super."servant-swagger_0_1_2";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = doDistribute super."set-extra_1_3_2";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setgame" = dontDistribute super."setgame";
+ "setops" = dontDistribute super."setops";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-grammar" = dontDistribute super."sexp-grammar";
+ "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-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_8_6";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shake-persist" = dontDistribute super."shake-persist";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare-babel" = dontDistribute super."shakespeare-babel";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-i18n" = dontDistribute super."shakespeare-i18n";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shakespeare-text" = dontDistribute super."shakespeare-text";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "sharc-timbre" = dontDistribute super."sharc-timbre";
+ "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";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shine" = dontDistribute super."shine";
+ "shine-varying" = dontDistribute super."shine-varying";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1";
+ "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";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "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-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "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";
+ "simplest-sqlite" = dontDistribute super."simplest-sqlite";
+ "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";
+ "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";
+ "skeleton" = dontDistribute super."skeleton";
+ "skell" = dontDistribute super."skell";
+ "skemmtun" = dontDistribute super."skemmtun";
+ "skulk" = dontDistribute super."skulk";
+ "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";
+ "sleep" = dontDistribute super."sleep";
+ "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";
+ "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";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "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-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-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-language" = dontDistribute super."snap-language";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
+ "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-ghcjs" = dontDistribute super."snaplet-ghcjs";
+ "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";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = doDistribute super."socket_0_5_3_1";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "socketson" = dontDistribute super."socketson";
+ "soegtk" = dontDistribute super."soegtk";
+ "solr" = dontDistribute super."solr";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "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";
+ "sparkle" = dontDistribute super."sparkle";
+ "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";
+ "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";
+ "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";
+ "sproxy" = dontDistribute super."sproxy";
+ "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-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";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
+ "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-marriage" = dontDistribute super."stable-marriage";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = doDistribute super."stack_1_0_2";
+ "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stack-run" = dontDistribute super."stack-run";
+ "stackage-curator" = doDistribute super."stackage-curator_0_13_3";
+ "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
+ "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-record" = dontDistribute super."state-record";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "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-client" = dontDistribute super."statsd-client";
+ "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-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-containers" = doDistribute super."stm-containers_0_2_10";
+ "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";
+ "stratosphere" = dontDistribute super."stratosphere";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream" = dontDistribute super."stream";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming-commons" = doDistribute super."streaming-commons_0_1_15_4";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-png" = dontDistribute super."streaming-png";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streaming-wai" = dontDistribute super."streaming-wai";
+ "strict-base-types" = doDistribute super."strict-base-types_0_4_0";
+ "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-conv" = dontDistribute super."string-conv";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "string-typelits" = dontDistribute super."string-typelits";
+ "stringlike" = dontDistribute super."stringlike";
+ "stringprep" = dontDistribute super."stringprep";
+ "strings" = dontDistribute super."strings";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
+ "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";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subleq-toolchain" = dontDistribute super."subleq-toolchain";
+ "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";
+ "sump" = dontDistribute super."sump";
+ "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";
+ "super-user-spark" = dontDistribute super."super-user-spark";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "supplemented" = dontDistribute super."supplemented";
+ "suspend" = dontDistribute super."suspend";
+ "svg-builder" = dontDistribute super."svg-builder";
+ "svg-tree" = doDistribute super."svg-tree_0_3_2";
+ "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";
+ "swagger2" = doDistribute super."swagger2_1_2_1";
+ "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-extras" = dontDistribute super."syb-extras";
+ "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";
+ "symengine-hs" = dontDistribute super."symengine-hs";
+ "sync" = dontDistribute super."sync";
+ "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-filter" = dontDistribute super."synthesizer-filter";
+ "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-canonicalpath" = dontDistribute super."system-canonicalpath";
+ "system-command" = dontDistribute super."system-command";
+ "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-test" = dontDistribute super."system-test";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "t-regex" = dontDistribute super."t-regex";
+ "t3-client" = dontDistribute super."t3-client";
+ "t3-game" = dontDistribute super."t3-game";
+ "t3-server" = dontDistribute super."t3-server";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-layout" = dontDistribute super."table-layout";
+ "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-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-timers" = dontDistribute super."tagged-timers";
+ "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";
+ "tai64" = dontDistribute super."tai64";
+ "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";
+ "tardis" = doDistribute super."tardis_0_3_0_0";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "task-distribution" = dontDistribute super."task-distribution";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0";
+ "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters";
+ "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";
+ "tateti-tateti" = dontDistribute super."tateti-tateti";
+ "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";
+ "telegram-api" = dontDistribute super."telegram-api";
+ "teleport" = dontDistribute super."teleport";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "template-yj" = dontDistribute super."template-yj";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempo" = dontDistribute super."tempo";
+ "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";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo" = doDistribute super."terminfo_0_4_0_2";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "termplot" = dontDistribute super."termplot";
+ "terntup" = dontDistribute super."terntup";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "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-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "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";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpack" = dontDistribute super."testpack";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texrunner" = dontDistribute super."texrunner";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "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-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-postgresql" = dontDistribute super."text-postgresql";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-region" = dontDistribute super."text-region";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "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" = doDistribute super."text-zipper_0_3_1";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "textual" = dontDistribute super."textual";
+ "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-cas" = dontDistribute super."th-cas";
+ "th-context" = dontDistribute super."th-context";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
+ "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-kinds-fork" = dontDistribute super."th-kinds-fork";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "th-utilities" = dontDistribute super."th-utilities";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "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";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "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-serial" = dontDistribute super."tidal-serial";
+ "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-cache" = dontDistribute super."time-cache";
+ "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-out" = dontDistribute super."time-out";
+ "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-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeless" = dontDistribute super."timeless";
+ "timelike" = dontDistribute super."timelike";
+ "timelike-clock" = dontDistribute super."timelike-clock";
+ "timelike-time" = dontDistribute super."timelike-time";
+ "timemap" = dontDistribute super."timemap";
+ "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";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = doDistribute super."tinylog_0_12_1";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "tiphys" = dontDistribute super."tiphys";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls" = doDistribute super."tls_1_3_7";
+ "tls-debug" = doDistribute super."tls-debug_0_4_1";
+ "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";
+ "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";
+ "total" = dontDistribute super."total";
+ "total-alternative" = dontDistribute super."total-alternative";
+ "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";
+ "tracetree" = dontDistribute super."tracetree";
+ "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-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-eff" = dontDistribute super."transformers-eff";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "transient-universe" = dontDistribute super."transient-universe";
+ "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-fun" = dontDistribute super."tree-fun";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treersec" = dontDistribute super."treersec";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "tripLL" = dontDistribute super."tripLL";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "true-name" = doDistribute super."true-name_0_1_0_1";
+ "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";
+ "tslib" = dontDistribute super."tslib";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttask" = dontDistribute super."ttask";
+ "tttool" = doDistribute super."tttool_1_5_1";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple" = dontDistribute super."tuple";
+ "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";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "turing" = dontDistribute super."turing";
+ "turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle-options" = dontDistribute super."turtle-options";
+ "tweak" = dontDistribute super."tweak";
+ "twee" = dontDistribute super."twee";
+ "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";
+ "twentyseven" = dontDistribute super."twentyseven";
+ "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" = doDistribute super."twitter-conduit_0_1_3";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "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-booleans" = dontDistribute super."type-booleans";
+ "type-cache" = dontDistribute super."type-cache";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-combinators" = dontDistribute super."type-combinators";
+ "type-combinators-quote" = dontDistribute super."type-combinators-quote";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-fun" = dontDistribute super."type-fun";
+ "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-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-operators" = dontDistribute super."type-operators";
+ "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";
+ "typed-spreadsheet" = dontDistribute super."typed-spreadsheet";
+ "typed-wire" = dontDistribute super."typed-wire";
+ "typed-wire-utils" = dontDistribute super."typed-wire-utils";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel" = dontDistribute super."typelevel";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uber" = dontDistribute super."uber";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus" = dontDistribute super."udbus";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "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";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unbreak" = dontDistribute super."unbreak";
+ "uncertain" = dontDistribute super."uncertain";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "unfoldable-restricted" = dontDistribute super."unfoldable-restricted";
+ "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-show" = dontDistribute super."unicode-show";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union" = dontDistribute super."union";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique" = dontDistribute super."unique";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "unit-constraint" = dontDistribute super."unit-constraint";
+ "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-th" = dontDistribute super."universe-th";
+ "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" = doDistribute super."unordered-containers_0_2_5_1";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unordered-graphs" = dontDistribute super."unordered-graphs";
+ "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";
+ "unsequential" = dontDistribute super."unsequential";
+ "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" = doDistribute super."uri-bytestring_0_1_9_2";
+ "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";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "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";
+ "users" = doDistribute super."users_0_4_0_0";
+ "users-persistent" = doDistribute super."users-persistent_0_4_0_0";
+ "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0";
+ "users-test" = doDistribute super."users-test_0_4_0_0";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "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-options" = dontDistribute super."uu-options";
+ "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-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "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";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "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";
+ "vcatt" = dontDistribute super."vcatt";
+ "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-binary" = dontDistribute super."vector-binary";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "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-sized" = dontDistribute super."vector-sized";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = dontDistribute super."vector-space-points";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verdict" = dontDistribute super."verdict";
+ "verdict-json" = dontDistribute super."verdict-json";
+ "verilog" = dontDistribute super."verilog";
+ "versions" = dontDistribute super."versions";
+ "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-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
+ "vinyl-plus" = dontDistribute super."vinyl-plus";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "vinyl-vectors" = dontDistribute super."vinyl-vectors";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "visibility" = dontDistribute super."visibility";
+ "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";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vrpn" = dontDistribute super."vrpn";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
+ "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";
+ "vulkan" = dontDistribute super."vulkan";
+ "wacom-daemon" = dontDistribute super."wacom-daemon";
+ "waddle" = dontDistribute super."waddle";
+ "wai-accept-language" = dontDistribute super."wai-accept-language";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-devel" = dontDistribute super."wai-devel";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "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" = doDistribute super."wai-handler-launch_3_0_1";
+ "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-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-content-type" = dontDistribute super."wai-middleware-content-type";
+ "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-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-session-alt" = dontDistribute super."wai-session-alt";
+ "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-thrift" = dontDistribute super."wai-thrift";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_2_2";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "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-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-transformers" = dontDistribute super."web-routes-transformers";
+ "webapi" = dontDistribute super."webapi";
+ "webapp" = dontDistribute super."webapp";
+ "webcloud" = dontDistribute super."webcloud";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webfinger-client" = dontDistribute super."webfinger-client";
+ "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";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "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";
+ "werewolf" = dontDistribute super."werewolf";
+ "werewolf-slack" = dontDistribute super."werewolf-slack";
+ "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";
+ "wigner-symbols" = dontDistribute super."wigner-symbols";
+ "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";
+ "with-location" = doDistribute super."with-location_0_0_0";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "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";
+ "word24" = dontDistribute super."word24";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "workflow-osx" = dontDistribute super."workflow-osx";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsdl" = dontDistribute super."wsdl";
+ "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-util" = dontDistribute super."x509-util";
+ "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";
+ "xdcc" = dontDistribute super."xdcc";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "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" = doDistribute super."xhtml_3000_2_1";
+ "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";
+ "xlsx-tabular" = dontDistribute super."xlsx-tabular";
+ "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_3_4_2";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-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-query" = dontDistribute super."xml-query";
+ "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit";
+ "xml-query-xml-types" = dontDistribute super."xml-query-xml-types";
+ "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-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";
+ "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";
+ "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-config" = dontDistribute super."yaml-config";
+ "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";
+ "yaml-union" = dontDistribute super."yaml-union";
+ "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";
+ "yeshql" = dontDistribute super."yeshql";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_3";
+ "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-ldap-native" = dontDistribute super."yesod-auth-ldap-native";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "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-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-csp" = dontDistribute super."yesod-csp";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-job-queue" = dontDistribute super."yesod-job-queue";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "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-raml-bin" = dontDistribute super."yesod-raml-bin";
+ "yesod-raml-docs" = dontDistribute super."yesod-raml-docs";
+ "yesod-raml-mock" = dontDistribute super."yesod-raml-mock";
+ "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-angular" = doDistribute super."yesod-static-angular_0_1_7";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "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-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "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";
+ "yoctoparsec" = dontDistribute super."yoctoparsec";
+ "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";
+ "zerobin" = dontDistribute super."zerobin";
+ "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";
+ "zim-parser" = doDistribute super."zim-parser_0_1_0_0";
+ "zip" = dontDistribute super."zip";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipkin" = dontDistribute super."zipkin";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "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-5.17.nix b/pkgs/development/haskell-modules/configuration-lts-5.17.nix
new file mode 100644
index 00000000000..a01bfe713f1
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-lts-5.17.nix
@@ -0,0 +1,8208 @@
+{ pkgs }:
+
+with import ./lib.nix { inherit pkgs; };
+
+self: super: {
+
+ # 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;
+ hoopl = null;
+ hpc = null;
+ integer-gmp = null;
+ pretty = null;
+ process = null;
+ rts = null;
+ template-haskell = null;
+ time = null;
+ transformers = null;
+ unix = null;
+
+ # lts-5.17 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";
+ "AFSM" = dontDistribute super."AFSM";
+ "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" = doDistribute super."Agda_2_4_2_5";
+ "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";
+ "BiGUL" = dontDistribute super."BiGUL";
+ "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";
+ "BiobaseNewick" = dontDistribute super."BiobaseNewick";
+ "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";
+ "Blobs" = dontDistribute super."Blobs";
+ "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";
+ "CabalSearch" = dontDistribute super."CabalSearch";
+ "Capabilities" = dontDistribute super."Capabilities";
+ "Cardinality" = dontDistribute super."Cardinality";
+ "CarneadesDSL" = dontDistribute super."CarneadesDSL";
+ "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung";
+ "Cartesian" = dontDistribute super."Cartesian";
+ "Cascade" = dontDistribute super."Cascade";
+ "Catana" = dontDistribute super."Catana";
+ "ChannelT" = dontDistribute super."ChannelT";
+ "Chart" = doDistribute super."Chart_1_5_4";
+ "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4";
+ "Chart-diagrams" = dontDistribute super."Chart-diagrams";
+ "Chart-gtk" = dontDistribute super."Chart-gtk";
+ "Chart-simple" = dontDistribute super."Chart-simple";
+ "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";
+ "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";
+ "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";
+ "ContextAlgebra" = dontDistribute super."ContextAlgebra";
+ "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";
+ "CoreDump" = dontDistribute super."CoreDump";
+ "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";
+ "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";
+ "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";
+ "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" = doDistribute super."Earley_0_10_1_0";
+ "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";
+ "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";
+ "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";
+ "ForSyDe" = dontDistribute super."ForSyDe";
+ "ForestStructures" = dontDistribute super."ForestStructures";
+ "ForkableT" = dontDistribute super."ForkableT";
+ "FormalGrammars" = dontDistribute super."FormalGrammars";
+ "Foster" = dontDistribute super."Foster";
+ "FpMLv53" = dontDistribute super."FpMLv53";
+ "FractalArt" = dontDistribute super."FractalArt";
+ "Fractaler" = dontDistribute super."Fractaler";
+ "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-demo" = dontDistribute super."GLFW-b-demo";
+ "GLFW-task" = dontDistribute super."GLFW-task";
+ "GLHUI" = dontDistribute super."GLHUI";
+ "GLM" = dontDistribute super."GLM";
+ "GLMatrix" = dontDistribute super."GLMatrix";
+ "GLUtil" = dontDistribute super."GLUtil";
+ "GPX" = dontDistribute super."GPX";
+ "GPipe-Collada" = dontDistribute super."GPipe-Collada";
+ "GPipe-Examples" = dontDistribute super."GPipe-Examples";
+ "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";
+ "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe";
+ "GenussFold" = dontDistribute super."GenussFold";
+ "GeoIp" = dontDistribute super."GeoIp";
+ "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage";
+ "Geodetic" = dontDistribute super."Geodetic";
+ "GeomPredicates" = dontDistribute super."GeomPredicates";
+ "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE";
+ "GiST" = dontDistribute super."GiST";
+ "Gifcurry" = dontDistribute super."Gifcurry";
+ "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";
+ "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";
+ "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-mysql" = dontDistribute super."HDBC-mysql";
+ "HDBC-odbc" = dontDistribute super."HDBC-odbc";
+ "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore";
+ "HDBC-session" = dontDistribute super."HDBC-session";
+ "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";
+ "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";
+ "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";
+ "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers";
+ "HSvm" = dontDistribute super."HSvm";
+ "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";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_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";
+ "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";
+ "HaskRel" = dontDistribute super."HaskRel";
+ "HaskellForMaths" = dontDistribute super."HaskellForMaths";
+ "HaskellLM" = dontDistribute super."HaskellLM";
+ "HaskellNN" = dontDistribute super."HaskellNN";
+ "HaskellTorrent" = dontDistribute super."HaskellTorrent";
+ "HaskellTutorials" = dontDistribute super."HaskellTutorials";
+ "Haskelloids" = dontDistribute super."Haskelloids";
+ "Hate" = dontDistribute super."Hate";
+ "Hawk" = dontDistribute super."Hawk";
+ "Hayoo" = dontDistribute super."Hayoo";
+ "Hclip" = dontDistribute super."Hclip";
+ "Hedi" = dontDistribute super."Hedi";
+ "HerbiePlugin" = dontDistribute super."HerbiePlugin";
+ "Hermes" = dontDistribute super."Hermes";
+ "Hieroglyph" = dontDistribute super."Hieroglyph";
+ "HiggsSet" = dontDistribute super."HiggsSet";
+ "Hipmunk" = dontDistribute super."Hipmunk";
+ "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
+ "Hish" = dontDistribute super."Hish";
+ "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-x509-system" = dontDistribute super."HsOpenSSL-x509-system";
+ "HsParrot" = dontDistribute super."HsParrot";
+ "HsPerl5" = dontDistribute super."HsPerl5";
+ "HsSVN" = dontDistribute super."HsSVN";
+ "HsTools" = dontDistribute super."HsTools";
+ "Hsed" = dontDistribute super."Hsed";
+ "Hsmtlib" = dontDistribute super."Hsmtlib";
+ "HueAPI" = dontDistribute super."HueAPI";
+ "HulkImport" = dontDistribute super."HulkImport";
+ "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";
+ "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";
+ "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-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
+ "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";
+ "Kriens" = dontDistribute super."Kriens";
+ "KyotoCabinet" = dontDistribute super."KyotoCabinet";
+ "L-seed" = dontDistribute super."L-seed";
+ "LATS" = dontDistribute super."LATS";
+ "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";
+ "Lambdajudge" = dontDistribute super."Lambdajudge";
+ "Lambdaya" = dontDistribute super."Lambdaya";
+ "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
+ "Lastik" = dontDistribute super."Lastik";
+ "Lattices" = dontDistribute super."Lattices";
+ "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
+ "LazyVault" = dontDistribute super."LazyVault";
+ "Level0" = dontDistribute super."Level0";
+ "LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
+ "Limit" = dontDistribute super."Limit";
+ "LinearSplit" = dontDistribute super."LinearSplit";
+ "LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
+ "LinkChecker" = dontDistribute super."LinkChecker";
+ "ListTree" = dontDistribute super."ListTree";
+ "ListWriter" = dontDistribute super."ListWriter";
+ "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";
+ "MASMGen" = dontDistribute super."MASMGen";
+ "MC-Fold-DP" = dontDistribute super."MC-Fold-DP";
+ "MHask" = dontDistribute super."MHask";
+ "MSQueue" = dontDistribute super."MSQueue";
+ "MTGBuilder" = dontDistribute super."MTGBuilder";
+ "MagicHaskeller" = dontDistribute super."MagicHaskeller";
+ "MailchimpSimple" = dontDistribute super."MailchimpSimple";
+ "MaybeT" = dontDistribute super."MaybeT";
+ "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";
+ "Michelangelo" = dontDistribute super."Michelangelo";
+ "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
+ "MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
+ "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";
+ "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-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";
+ "NearContextAlgebra" = dontDistribute super."NearContextAlgebra";
+ "Neks" = dontDistribute super."Neks";
+ "NestedFunctor" = dontDistribute super."NestedFunctor";
+ "NestedSampling" = dontDistribute super."NestedSampling";
+ "NetSNMP" = dontDistribute super."NetSNMP";
+ "NewBinary" = dontDistribute super."NewBinary";
+ "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";
+ "NumberTheory" = dontDistribute super."NumberTheory";
+ "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";
+ "Obsidian" = dontDistribute super."Obsidian";
+ "OddWord" = dontDistribute super."OddWord";
+ "Omega" = dontDistribute super."Omega";
+ "OneTuple" = dontDistribute super."OneTuple";
+ "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";
+ "OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_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";
+ "PTQ" = dontDistribute super."PTQ";
+ "PUH-Project" = dontDistribute super."PUH-Project";
+ "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";
+ "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty";
+ "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";
+ "QLearn" = dontDistribute super."QLearn";
+ "QuadEdge" = dontDistribute super."QuadEdge";
+ "QuadTree" = dontDistribute super."QuadTree";
+ "Quelea" = dontDistribute super."Quelea";
+ "QuickAnnotate" = dontDistribute super."QuickAnnotate";
+ "QuickCheck" = doDistribute super."QuickCheck_2_8_1";
+ "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT";
+ "QuickCheck-safe" = dontDistribute super."QuickCheck-safe";
+ "QuickPlot" = dontDistribute super."QuickPlot";
+ "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";
+ "RNAlien" = doDistribute super."RNAlien_1_0_0";
+ "RNAwolf" = dontDistribute super."RNAwolf";
+ "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";
+ "Redmine" = dontDistribute super."Redmine";
+ "Ref" = dontDistribute super."Ref";
+ "Referees" = dontDistribute super."Referees";
+ "RepLib" = dontDistribute super."RepLib";
+ "ReplicateEffects" = dontDistribute super."ReplicateEffects";
+ "ReviewBoard" = dontDistribute super."ReviewBoard";
+ "RichConditional" = dontDistribute super."RichConditional";
+ "RollingDirectory" = dontDistribute super."RollingDirectory";
+ "RoyalMonad" = dontDistribute super."RoyalMonad";
+ "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";
+ "SVG2Q" = dontDistribute super."SVG2Q";
+ "SVGFonts" = dontDistribute super."SVGFonts";
+ "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";
+ "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";
+ "SimpleServer" = dontDistribute super."SimpleServer";
+ "SizeCompare" = dontDistribute super."SizeCompare";
+ "Slides" = dontDistribute super."Slides";
+ "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-auth" = dontDistribute super."Spock-auth";
+ "Spock-lucid" = dontDistribute super."Spock-lucid";
+ "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3";
+ "SpreadsheetML" = dontDistribute super."SpreadsheetML";
+ "Sprig" = dontDistribute super."Sprig";
+ "Stasis" = dontDistribute super."Stasis";
+ "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";
+ "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";
+ "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";
+ "Tahin" = dontDistribute super."Tahin";
+ "Tainted" = dontDistribute super."Tainted";
+ "Takusen" = dontDistribute super."Takusen";
+ "Tape" = dontDistribute super."Tape";
+ "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-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";
+ "Verba" = dontDistribute super."Verba";
+ "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings";
+ "Vulkan" = dontDistribute super."Vulkan";
+ "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";
+ "WaveFront" = dontDistribute super."WaveFront";
+ "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-dhcp-server" = dontDistribute super."Win32-dhcp-server";
+ "Win32-errors" = dontDistribute super."Win32-errors";
+ "Win32-junction-point" = dontDistribute super."Win32-junction-point";
+ "Win32-security" = dontDistribute super."Win32-security";
+ "Win32-services" = dontDistribute super."Win32-services";
+ "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper";
+ "Wired" = dontDistribute super."Wired";
+ "WordAlignment" = dontDistribute super."WordAlignment";
+ "WordNet" = dontDistribute super."WordNet";
+ "WordNet-ghc74" = dontDistribute super."WordNet-ghc74";
+ "Wordlint" = dontDistribute super."Wordlint";
+ "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";
+ "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-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-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-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
+ "accelerate-utility" = dontDistribute super."accelerate-utility";
+ "accentuateus" = dontDistribute super."accentuateus";
+ "access-time" = dontDistribute super."access-time";
+ "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-left-pad" = dontDistribute super."acme-left-pad";
+ "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";
+ "activehs" = dontDistribute super."activehs";
+ "activehs-base" = dontDistribute super."activehs-base";
+ "activitystreams-aeson" = dontDistribute super."activitystreams-aeson";
+ "actor" = dontDistribute super."actor";
+ "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";
+ "adler32" = dontDistribute super."adler32";
+ "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_9_0_1";
+ "aeson-applicative" = dontDistribute super."aeson-applicative";
+ "aeson-bson" = dontDistribute super."aeson-bson";
+ "aeson-diff" = dontDistribute super."aeson-diff";
+ "aeson-filthy" = dontDistribute super."aeson-filthy";
+ "aeson-flatten" = dontDistribute super."aeson-flatten";
+ "aeson-iproute" = dontDistribute super."aeson-iproute";
+ "aeson-json-ast" = dontDistribute super."aeson-json-ast";
+ "aeson-lens" = dontDistribute super."aeson-lens";
+ "aeson-native" = dontDistribute super."aeson-native";
+ "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
+ "aeson-prefix" = dontDistribute super."aeson-prefix";
+ "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-value-parser" = dontDistribute super."aeson-value-parser";
+ "aeson-yak" = dontDistribute super."aeson-yak";
+ "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc";
+ "afis" = dontDistribute super."afis";
+ "afv" = dontDistribute super."afv";
+ "ag-pictgen" = dontDistribute super."ag-pictgen";
+ "agda-server" = dontDistribute super."agda-server";
+ "agda-snippets" = dontDistribute super."agda-snippets";
+ "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
+ "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" = doDistribute super."airship_0_4_3_0";
+ "aivika" = dontDistribute super."aivika";
+ "aivika-branches" = dontDistribute super."aivika-branches";
+ "aivika-distributed" = dontDistribute super."aivika-distributed";
+ "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";
+ "alea" = dontDistribute super."alea";
+ "alex-meta" = dontDistribute super."alex-meta";
+ "alfred" = dontDistribute super."alfred";
+ "alga" = dontDistribute super."alga";
+ "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" = doDistribute super."amazonka_1_3_7";
+ "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7";
+ "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7";
+ "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager";
+ "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7";
+ "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7";
+ "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7";
+ "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7";
+ "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7";
+ "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7";
+ "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7";
+ "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events";
+ "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7";
+ "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7";
+ "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7";
+ "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7";
+ "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7";
+ "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp";
+ "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7";
+ "amazonka-config" = doDistribute super."amazonka-config_1_3_7";
+ "amazonka-core" = doDistribute super."amazonka-core_1_3_7";
+ "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7";
+ "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7";
+ "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7";
+ "amazonka-dms" = dontDistribute super."amazonka-dms";
+ "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7";
+ "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7";
+ "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7";
+ "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7";
+ "amazonka-ecr" = dontDistribute super."amazonka-ecr";
+ "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7";
+ "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7";
+ "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7";
+ "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7";
+ "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7";
+ "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7";
+ "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7";
+ "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7";
+ "amazonka-gamelift" = dontDistribute super."amazonka-gamelift";
+ "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7";
+ "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7";
+ "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7";
+ "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7";
+ "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7";
+ "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7";
+ "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7";
+ "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7";
+ "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7";
+ "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7";
+ "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7";
+ "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering";
+ "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7";
+ "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7";
+ "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7";
+ "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7";
+ "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7";
+ "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7";
+ "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7";
+ "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7";
+ "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7";
+ "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7";
+ "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7";
+ "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7";
+ "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7";
+ "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7";
+ "amazonka-support" = doDistribute super."amazonka-support_1_3_7";
+ "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7";
+ "amazonka-test" = doDistribute super."amazonka-test_1_3_7";
+ "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7";
+ "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7";
+ "ampersand" = dontDistribute super."ampersand";
+ "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" = dontDistribute super."android";
+ "android-lint-summary" = dontDistribute super."android-lint-summary";
+ "animalcase" = dontDistribute super."animalcase";
+ "annah" = dontDistribute super."annah";
+ "annihilator" = dontDistribute super."annihilator";
+ "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests";
+ "ansi-pretty" = dontDistribute super."ansi-pretty";
+ "ansigraph" = dontDistribute super."ansigraph";
+ "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-field-json-th" = dontDistribute super."api-field-json-th";
+ "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
+ "api-tools" = dontDistribute super."api-tools";
+ "apiary" = doDistribute super."apiary_1_4_5";
+ "apiary-helics" = dontDistribute super."apiary-helics";
+ "apiary-http-client" = dontDistribute super."apiary-http-client";
+ "apiary-purescript" = dontDistribute super."apiary-purescript";
+ "apis" = dontDistribute super."apis";
+ "apotiki" = dontDistribute super."apotiki";
+ "app-lens" = dontDistribute super."app-lens";
+ "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";
+ "applicative-splice" = dontDistribute super."applicative-splice";
+ "apply-refact" = doDistribute super."apply-refact_0_1_0_0";
+ "apportionment" = dontDistribute super."apportionment";
+ "approx-rand-test" = dontDistribute super."approx-rand-test";
+ "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";
+ "archive" = dontDistribute super."archive";
+ "archiver" = dontDistribute super."archiver";
+ "archlinux" = dontDistribute super."archlinux";
+ "archlinux-web" = dontDistribute super."archlinux-web";
+ "archnews" = dontDistribute super."archnews";
+ "arena" = dontDistribute super."arena";
+ "arff" = dontDistribute super."arff";
+ "arghwxhaskell" = dontDistribute super."arghwxhaskell";
+ "argon" = doDistribute super."argon_0_4_0_0";
+ "argon2" = dontDistribute super."argon2";
+ "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" = dontDistribute super."arithmoi";
+ "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";
+ "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-flatten" = dontDistribute super."ascii-flatten";
+ "ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
+ "ascii85-conduit" = dontDistribute super."ascii85-conduit";
+ "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1";
+ "asic" = dontDistribute super."asic";
+ "asil" = dontDistribute super."asil";
+ "asn1-data" = dontDistribute super."asn1-data";
+ "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-dejafu" = doDistribute super."async-dejafu_0_1_0_0";
+ "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";
+ "atndapi" = dontDistribute super."atndapi";
+ "atom" = dontDistribute super."atom";
+ "atom-basic" = dontDistribute super."atom-basic";
+ "atom-conduit" = dontDistribute super."atom-conduit";
+ "atom-msp430" = dontDistribute super."atom-msp430";
+ "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";
+ "atp-haskell" = dontDistribute super."atp-haskell";
+ "atrans" = dontDistribute super."atrans";
+ "attempt" = dontDistribute super."attempt";
+ "atto-lisp" = dontDistribute super."atto-lisp";
+ "attoparsec-arff" = dontDistribute super."attoparsec-arff";
+ "attoparsec-binary" = dontDistribute super."attoparsec-binary";
+ "attoparsec-conduit" = dontDistribute super."attoparsec-conduit";
+ "attoparsec-csv" = dontDistribute super."attoparsec-csv";
+ "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";
+ "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";
+ "authinfo-hs" = dontDistribute super."authinfo-hs";
+ "authoring" = dontDistribute super."authoring";
+ "autoexporter" = dontDistribute super."autoexporter";
+ "automitive-cse" = dontDistribute super."automitive-cse";
+ "automotive-cse" = dontDistribute super."automotive-cse";
+ "autonix-deps" = dontDistribute super."autonix-deps";
+ "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5";
+ "autoproc" = dontDistribute super."autoproc";
+ "avahi" = dontDistribute super."avahi";
+ "avatar-generator" = dontDistribute super."avatar-generator";
+ "average" = dontDistribute super."average";
+ "avers-server" = doDistribute super."avers-server_0_0_3";
+ "avl-static" = dontDistribute super."avl-static";
+ "avr-shake" = dontDistribute super."avr-shake";
+ "awesome-prelude" = dontDistribute super."awesome-prelude";
+ "awesomium" = dontDistribute super."awesomium";
+ "awesomium-glut" = dontDistribute super."awesomium-glut";
+ "awesomium-raw" = dontDistribute super."awesomium-raw";
+ "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";
+ "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";
+ "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-holiday-usa" = dontDistribute super."bank-holiday-usa";
+ "banwords" = dontDistribute super."banwords";
+ "barchart" = dontDistribute super."barchart";
+ "barcodes-code128" = dontDistribute super."barcodes-code128";
+ "barecheck" = dontDistribute super."barecheck";
+ "barley" = dontDistribute super."barley";
+ "barrie" = dontDistribute super."barrie";
+ "barrier-monad" = dontDistribute super."barrier-monad";
+ "base-generics" = dontDistribute super."base-generics";
+ "base-io-access" = dontDistribute super."base-io-access";
+ "base-prelude" = doDistribute super."base-prelude_0_1_21";
+ "base32-bytestring" = dontDistribute super."base32-bytestring";
+ "base58-bytestring" = dontDistribute super."base58-bytestring";
+ "base58address" = dontDistribute super."base58address";
+ "base64-conduit" = dontDistribute super."base64-conduit";
+ "base91" = dontDistribute super."base91";
+ "basex-client" = dontDistribute super."basex-client";
+ "bash" = dontDistribute super."bash";
+ "basic-lens" = dontDistribute super."basic-lens";
+ "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";
+ "bbi" = dontDistribute super."bbi";
+ "bdd" = dontDistribute super."bdd";
+ "bdelta" = dontDistribute super."bdelta";
+ "bdo" = dontDistribute super."bdo";
+ "beam" = dontDistribute super."beam";
+ "beamable" = dontDistribute super."beamable";
+ "beautifHOL" = dontDistribute super."beautifHOL";
+ "bed-and-breakfast" = dontDistribute super."bed-and-breakfast";
+ "bein" = dontDistribute super."bein";
+ "bench" = dontDistribute super."bench";
+ "benchmark-function" = dontDistribute super."benchmark-function";
+ "bencoding" = dontDistribute super."bencoding";
+ "bento" = dontDistribute super."bento";
+ "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";
+ "bibdb" = dontDistribute super."bibdb";
+ "bibtex" = dontDistribute super."bibtex";
+ "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined";
+ "bidispec" = dontDistribute super."bidispec";
+ "bidispec-extras" = dontDistribute super."bidispec-extras";
+ "bighugethesaurus" = dontDistribute super."bighugethesaurus";
+ "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";
+ "bimaps" = dontDistribute super."bimaps";
+ "binary-bits" = dontDistribute super."binary-bits";
+ "binary-communicator" = dontDistribute super."binary-communicator";
+ "binary-derive" = dontDistribute super."binary-derive";
+ "binary-enum" = dontDistribute super."binary-enum";
+ "binary-file" = dontDistribute super."binary-file";
+ "binary-generic" = dontDistribute super."binary-generic";
+ "binary-indexed-tree" = dontDistribute super."binary-indexed-tree";
+ "binary-literal-qq" = dontDistribute super."binary-literal-qq";
+ "binary-protocol" = dontDistribute super."binary-protocol";
+ "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq";
+ "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";
+ "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-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" = doDistribute super."bindings-libzip_0_10_2";
+ "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-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-wlc" = dontDistribute super."bindings-wlc";
+ "bindings-yices" = dontDistribute super."bindings-yices";
+ "bindynamic" = dontDistribute super."bindynamic";
+ "binembed" = dontDistribute super."binembed";
+ "binembed-example" = dontDistribute super."binembed-example";
+ "bini" = dontDistribute super."bini";
+ "bio" = dontDistribute super."bio";
+ "biohazard" = dontDistribute super."biohazard";
+ "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit";
+ "biosff" = dontDistribute super."biosff";
+ "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-payment-channel" = dontDistribute super."bitcoin-payment-channel";
+ "bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
+ "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-bytestring" = dontDistribute super."bits-bytestring";
+ "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";
+ "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";
+ "blas" = dontDistribute super."blas";
+ "blas-hs" = dontDistribute super."blas-hs";
+ "blatex" = dontDistribute super."blatex";
+ "blaze" = dontDistribute super."blaze";
+ "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
+ "blaze-from-html" = dontDistribute super."blaze-from-html";
+ "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-shields" = dontDistribute super."blaze-shields";
+ "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" = dontDistribute super."bloodhound";
+ "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
+ "bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
+ "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";
+ "bond" = dontDistribute super."bond";
+ "bond-haskell" = dontDistribute super."bond-haskell";
+ "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler";
+ "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";
+ "boombox" = dontDistribute super."boombox";
+ "boomslang" = dontDistribute super."boomslang";
+ "borel" = dontDistribute super."borel";
+ "bot" = dontDistribute super."bot";
+ "botpp" = dontDistribute super."botpp";
+ "bound-gen" = dontDistribute super."bound-gen";
+ "bounded-tchan" = dontDistribute super."bounded-tchan";
+ "boundingboxes" = dontDistribute super."boundingboxes";
+ "bower-json" = doDistribute super."bower-json_0_7_0_0";
+ "bowntz" = dontDistribute super."bowntz";
+ "bpann" = dontDistribute super."bpann";
+ "braid" = dontDistribute super."braid";
+ "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";
+ "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-mapping" = dontDistribute super."bson-mapping";
+ "bspack" = dontDistribute super."bspack";
+ "bsparse" = dontDistribute super."bsparse";
+ "btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
+ "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
+ "buffer-pipe" = dontDistribute super."buffer-pipe";
+ "buffon" = dontDistribute super."buffon";
+ "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";
+ "butterflies" = dontDistribute super."butterflies";
+ "bv" = dontDistribute super."bv";
+ "byline" = dontDistribute super."byline";
+ "bytable" = dontDistribute super."bytable";
+ "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary";
+ "bytestring-class" = dontDistribute super."bytestring-class";
+ "bytestring-csv" = dontDistribute super."bytestring-csv";
+ "bytestring-delta" = dontDistribute super."bytestring-delta";
+ "bytestring-from" = dontDistribute super."bytestring-from";
+ "bytestring-nums" = dontDistribute super."bytestring-nums";
+ "bytestring-plain" = dontDistribute super."bytestring-plain";
+ "bytestring-rematch" = dontDistribute super."bytestring-rematch";
+ "bytestring-short" = dontDistribute super."bytestring-short";
+ "bytestring-show" = dontDistribute super."bytestring-show";
+ "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder";
+ "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_27_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-dependency-licenses" = dontDistribute super."cabal-dependency-licenses";
+ "cabal-dev" = dontDistribute super."cabal-dev";
+ "cabal-dir" = dontDistribute super."cabal-dir";
+ "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
+ "cabal-ghci" = dontDistribute super."cabal-ghci";
+ "cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
+ "cabal-info" = dontDistribute super."cabal-info";
+ "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-scripts" = dontDistribute super."cabal-scripts";
+ "cabal-setup" = dontDistribute super."cabal-setup";
+ "cabal-sign" = dontDistribute super."cabal-sign";
+ "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";
+ "cacophony" = doDistribute super."cacophony_0_4_0";
+ "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";
+ "caldims" = dontDistribute super."caldims";
+ "caledon" = dontDistribute super."caledon";
+ "call" = dontDistribute super."call";
+ "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything";
+ "camfort" = dontDistribute super."camfort";
+ "camh" = dontDistribute super."camh";
+ "campfire" = dontDistribute super."campfire";
+ "canonical-filepath" = dontDistribute super."canonical-filepath";
+ "canteven-config" = dontDistribute super."canteven-config";
+ "canteven-listen-http" = dontDistribute super."canteven-listen-http";
+ "canteven-log" = dontDistribute super."canteven-log";
+ "canteven-template" = dontDistribute super."canteven-template";
+ "cantor" = dontDistribute super."cantor";
+ "cao" = dontDistribute super."cao";
+ "cap" = dontDistribute super."cap";
+ "capped-list" = dontDistribute super."capped-list";
+ "capri" = dontDistribute super."capri";
+ "car-pool" = dontDistribute super."car-pool";
+ "caramia" = dontDistribute super."caramia";
+ "carboncopy" = dontDistribute super."carboncopy";
+ "carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
+ "cartel" = doDistribute super."cartel_0_14_2_8";
+ "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
+ "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";
+ "cash" = dontDistribute super."cash";
+ "casing" = dontDistribute super."casing";
+ "casr-logbook" = dontDistribute super."casr-logbook";
+ "cassandra-cql" = dontDistribute super."cassandra-cql";
+ "cassandra-thrift" = dontDistribute super."cassandra-thrift";
+ "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";
+ "category-printf" = dontDistribute super."category-printf";
+ "category-traced" = dontDistribute super."category-traced";
+ "cayley-dickson" = dontDistribute super."cayley-dickson";
+ "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";
+ "cerberus" = dontDistribute super."cerberus";
+ "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";
+ "certificate" = dontDistribute super."certificate";
+ "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" = doDistribute super."cgi_3001_2_2_3";
+ "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";
+ "charsetdetect" = dontDistribute super."charsetdetect";
+ "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-highlight" = dontDistribute super."cheapskate-highlight";
+ "cheapskate-lucid" = dontDistribute super."cheapskate-lucid";
+ "cheapskate-terminal" = dontDistribute super."cheapskate-terminal";
+ "check-pvp" = dontDistribute super."check-pvp";
+ "checked" = dontDistribute super."checked";
+ "chell-hunit" = dontDistribute super."chell-hunit";
+ "chesshs" = dontDistribute super."chesshs";
+ "chevalier-common" = dontDistribute super."chevalier-common";
+ "chorale" = dontDistribute super."chorale";
+ "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";
+ "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-rc5" = dontDistribute super."cipher-rc5";
+ "ciphersaber2" = dontDistribute super."ciphersaber2";
+ "circ" = dontDistribute super."circ";
+ "circlehs" = dontDistribute super."circlehs";
+ "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";
+ "clang-pure" = dontDistribute super."clang-pure";
+ "clanki" = dontDistribute super."clanki";
+ "clarifai" = dontDistribute super."clarifai";
+ "clash" = dontDistribute super."clash";
+ "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck";
+ "classify" = dontDistribute super."classify";
+ "classy-parallel" = dontDistribute super."classy-parallel";
+ "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-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";
+ "cloben" = dontDistribute super."cloben";
+ "clock" = doDistribute super."clock_0_6_0_1";
+ "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";
+ "clumpiness" = dontDistribute super."clumpiness";
+ "cluss" = dontDistribute super."cluss";
+ "clustertools" = dontDistribute super."clustertools";
+ "clutterhs" = dontDistribute super."clutterhs";
+ "cmaes" = dontDistribute super."cmaes";
+ "cmath" = dontDistribute super."cmath";
+ "cmathml3" = dontDistribute super."cmathml3";
+ "cmd-item" = dontDistribute super."cmd-item";
+ "cmdargs-browser" = dontDistribute super."cmdargs-browser";
+ "cmdlib" = dontDistribute super."cmdlib";
+ "cmdtheline" = dontDistribute super."cmdtheline";
+ "cml" = dontDistribute super."cml";
+ "cmonad" = dontDistribute super."cmonad";
+ "cmph" = dontDistribute super."cmph";
+ "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";
+ "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";
+ "color-counter" = dontDistribute super."color-counter";
+ "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";
+ "commander" = dontDistribute super."commander";
+ "commodities" = dontDistribute super."commodities";
+ "commsec" = dontDistribute super."commsec";
+ "commsec-keyexchange" = dontDistribute super."commsec-keyexchange";
+ "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-automata" = dontDistribute super."compdata-automata";
+ "compdata-dags" = dontDistribute super."compdata-dags";
+ "compdata-param" = dontDistribute super."compdata-param";
+ "compensated" = dontDistribute super."compensated";
+ "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-ltr" = dontDistribute super."compose-ltr";
+ "compose-trans" = dontDistribute super."compose-trans";
+ "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" = dontDistribute super."concurrent-extra";
+ "concurrent-machines" = dontDistribute super."concurrent-machines";
+ "concurrent-rpc" = dontDistribute super."concurrent-rpc";
+ "concurrent-sa" = dontDistribute super."concurrent-sa";
+ "concurrent-split" = dontDistribute super."concurrent-split";
+ "concurrent-state" = dontDistribute super."concurrent-state";
+ "concurrent-utilities" = dontDistribute super."concurrent-utilities";
+ "concurrentoutput" = dontDistribute super."concurrentoutput";
+ "cond" = dontDistribute super."cond";
+ "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-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-network-stream" = dontDistribute super."conduit-network-stream";
+ "conduit-resumablesink" = dontDistribute super."conduit-resumablesink";
+ "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec";
+ "conf" = dontDistribute super."conf";
+ "config-manager" = dontDistribute super."config-manager";
+ "config-select" = dontDistribute super."config-select";
+ "config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
+ "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-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";
+ "constraint-classes" = dontDistribute super."constraint-classes";
+ "constructible" = dontDistribute super."constructible";
+ "constructive-algebra" = dontDistribute super."constructive-algebra";
+ "consumers" = dontDistribute super."consumers";
+ "container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
+ "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";
+ "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-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";
+ "convert" = dontDistribute super."convert";
+ "convertible-ascii" = dontDistribute super."convertible-ascii";
+ "convertible-text" = dontDistribute super."convertible-text";
+ "cookbook" = dontDistribute super."cookbook";
+ "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";
+ "copilot-theorem" = dontDistribute super."copilot-theorem";
+ "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";
+ "court" = dontDistribute super."court";
+ "coverage" = dontDistribute super."coverage";
+ "cpio-conduit" = dontDistribute super."cpio-conduit";
+ "cplex-hs" = dontDistribute super."cplex-hs";
+ "cplusplus-th" = dontDistribute super."cplusplus-th";
+ "cpphs" = doDistribute super."cpphs_1_19_3";
+ "cprng-aes-effect" = dontDistribute super."cprng-aes-effect";
+ "cpsa" = dontDistribute super."cpsa";
+ "cpuid" = dontDistribute super."cpuid";
+ "cpuperf" = dontDistribute super."cpuperf";
+ "cpython" = dontDistribute super."cpython";
+ "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";
+ "craftwerk" = dontDistribute super."craftwerk";
+ "craftwerk-cairo" = dontDistribute super."craftwerk-cairo";
+ "craftwerk-gtk" = dontDistribute super."craftwerk-gtk";
+ "craze" = dontDistribute super."craze";
+ "crc" = dontDistribute super."crc";
+ "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-plus" = dontDistribute super."criterion-plus";
+ "criterion-to-html" = dontDistribute super."criterion-to-html";
+ "crockford" = dontDistribute super."crockford";
+ "crocodile" = dontDistribute super."crocodile";
+ "cron" = doDistribute super."cron_0_3_2";
+ "cron-compat" = dontDistribute super."cron-compat";
+ "cruncher-types" = dontDistribute super."cruncher-types";
+ "crunghc" = dontDistribute super."crunghc";
+ "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks";
+ "crypto-classical" = dontDistribute super."crypto-classical";
+ "crypto-conduit" = dontDistribute super."crypto-conduit";
+ "crypto-enigma" = dontDistribute super."crypto-enigma";
+ "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh";
+ "crypto-random-effect" = dontDistribute super."crypto-random-effect";
+ "crypto-totp" = dontDistribute super."crypto-totp";
+ "cryptohash" = doDistribute super."cryptohash_0_11_6";
+ "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
+ "cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
+ "cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
+ "cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
+ "cryptonite-openssl" = dontDistribute super."cryptonite-openssl";
+ "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";
+ "csv-enumerator" = dontDistribute super."csv-enumerator";
+ "csv-nptools" = dontDistribute super."csv-nptools";
+ "csv-table" = dontDistribute super."csv-table";
+ "csv-to-qif" = dontDistribute super."csv-to-qif";
+ "ctemplate" = dontDistribute super."ctemplate";
+ "ctkl" = dontDistribute super."ctkl";
+ "ctpl" = dontDistribute super."ctpl";
+ "cube" = dontDistribute super."cube";
+ "cubical" = dontDistribute super."cubical";
+ "cubicbezier" = dontDistribute super."cubicbezier";
+ "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";
+ "d3d11binding" = dontDistribute super."d3d11binding";
+ "d3js" = dontDistribute super."d3js";
+ "daemonize-doublefork" = dontDistribute super."daemonize-doublefork";
+ "daemons" = dontDistribute super."daemons";
+ "dag" = dontDistribute super."dag";
+ "damnpacket" = dontDistribute super."damnpacket";
+ "danibot" = dontDistribute super."danibot";
+ "dao" = dontDistribute super."dao";
+ "dapi" = dontDistribute super."dapi";
+ "darcs" = doDistribute super."darcs_2_10_3";
+ "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-base" = dontDistribute super."data-base";
+ "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-construction" = dontDistribute super."data-construction";
+ "data-cycle" = dontDistribute super."data-cycle";
+ "data-default-extra" = dontDistribute super."data-default-extra";
+ "data-default-generics" = dontDistribute super."data-default-generics";
+ "data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
+ "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
+ "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
+ "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
+ "data-default-instances-text" = dontDistribute super."data-default-instances-text";
+ "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
+ "data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
+ "data-dispersal" = dontDistribute super."data-dispersal";
+ "data-dword" = dontDistribute super."data-dword";
+ "data-easy" = dontDistribute super."data-easy";
+ "data-embed" = dontDistribute super."data-embed";
+ "data-endian" = dontDistribute super."data-endian";
+ "data-extend-generic" = dontDistribute super."data-extend-generic";
+ "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-function-meld" = dontDistribute super."data-function-meld";
+ "data-interval" = dontDistribute super."data-interval";
+ "data-ivar" = dontDistribute super."data-ivar";
+ "data-json-token" = dontDistribute super."data-json-token";
+ "data-kiln" = dontDistribute super."data-kiln";
+ "data-layer" = dontDistribute super."data-layer";
+ "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-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-cse" = dontDistribute super."data-reify-cse";
+ "data-repr" = dontDistribute super."data-repr";
+ "data-result" = dontDistribute super."data-result";
+ "data-rev" = dontDistribute super."data-rev";
+ "data-rope" = dontDistribute super."data-rope";
+ "data-rtuple" = dontDistribute super."data-rtuple";
+ "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";
+ "dataenc" = dontDistribute super."dataenc";
+ "dataflow" = dontDistribute super."dataflow";
+ "datalog" = dontDistribute super."datalog";
+ "datapacker" = dontDistribute super."datapacker";
+ "dataurl" = dontDistribute super."dataurl";
+ "date-cache" = dontDistribute super."date-cache";
+ "dates" = dontDistribute super."dates";
+ "datetime" = dontDistribute super."datetime";
+ "datetime-sb" = dontDistribute super."datetime-sb";
+ "dawdle" = dontDistribute super."dawdle";
+ "dawg" = dontDistribute super."dawg";
+ "dbcleaner" = dontDistribute super."dbcleaner";
+ "dbf" = dontDistribute super."dbf";
+ "dbjava" = dontDistribute super."dbjava";
+ "dbmigrations" = doDistribute super."dbmigrations_1_0";
+ "dbus-client" = dontDistribute super."dbus-client";
+ "dbus-core" = dontDistribute super."dbus-core";
+ "dbus-qq" = dontDistribute super."dbus-qq";
+ "dbus-th" = dontDistribute super."dbus-th";
+ "dbus-th-introspection" = dontDistribute super."dbus-th-introspection";
+ "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-babel" = dontDistribute super."ddc-core-babel";
+ "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-binary" = dontDistribute super."debian-binary";
+ "debian-build" = dontDistribute super."debian-build";
+ "debug-diff" = dontDistribute super."debug-diff";
+ "debug-time" = dontDistribute super."debug-time";
+ "decepticons" = dontDistribute super."decepticons";
+ "decimal-arithmetic" = dontDistribute super."decimal-arithmetic";
+ "declarative" = doDistribute super."declarative_0_1_0_1";
+ "decode-utf8" = dontDistribute super."decode-utf8";
+ "decoder-conduit" = dontDistribute super."decoder-conduit";
+ "dedukti" = dontDistribute super."dedukti";
+ "deepcontrol" = dontDistribute super."deepcontrol";
+ "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" = doDistribute super."dejafu_0_2_0_0";
+ "deka" = dontDistribute super."deka";
+ "deka-tests" = dontDistribute super."deka-tests";
+ "delaunay" = dontDistribute super."delaunay";
+ "delay" = dontDistribute super."delay";
+ "delicious" = dontDistribute super."delicious";
+ "delimited-text" = dontDistribute super."delimited-text";
+ "delimiter-separated" = dontDistribute super."delimiter-separated";
+ "delta" = dontDistribute super."delta";
+ "delta-h" = dontDistribute super."delta-h";
+ "demarcate" = dontDistribute super."demarcate";
+ "denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
+ "dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
+ "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-monoid" = dontDistribute super."derive-monoid";
+ "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";
+ "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-graphviz" = dontDistribute super."diagrams-graphviz";
+ "diagrams-hsqml" = dontDistribute super."diagrams-hsqml";
+ "diagrams-pandoc" = dontDistribute super."diagrams-pandoc";
+ "diagrams-pdf" = dontDistribute super."diagrams-pdf";
+ "diagrams-pgf" = dontDistribute super."diagrams-pgf";
+ "diagrams-qrcode" = dontDistribute super."diagrams-qrcode";
+ "diagrams-reflex" = dontDistribute super."diagrams-reflex";
+ "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube";
+ "diagrams-tikz" = dontDistribute super."diagrams-tikz";
+ "diagrams-wx" = dontDistribute super."diagrams-wx";
+ "dialog" = dontDistribute super."dialog";
+ "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit";
+ "dicom" = dontDistribute super."dicom";
+ "dictparser" = dontDistribute super."dictparser";
+ "diet" = dontDistribute super."diet";
+ "diff-gestalt" = dontDistribute super."diff-gestalt";
+ "diff-parse" = dontDistribute super."diff-parse";
+ "diffarray" = dontDistribute super."diffarray";
+ "diffcabal" = dontDistribute super."diffcabal";
+ "diffdump" = dontDistribute super."diffdump";
+ "digamma" = dontDistribute super."digamma";
+ "digest-pure" = dontDistribute super."digest-pure";
+ "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid";
+ "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-scotty" = dontDistribute super."digestive-functors-scotty";
+ "digestive-functors-snap" = dontDistribute super."digestive-functors-snap";
+ "digit" = dontDistribute super."digit";
+ "digitalocean-kzs" = dontDistribute super."digitalocean-kzs";
+ "dimensional-codata" = dontDistribute super."dimensional-codata";
+ "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";
+ "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser";
+ "dirfiles" = dontDistribute super."dirfiles";
+ "dirstream" = dontDistribute super."dirstream";
+ "disassembler" = dontDistribute super."disassembler";
+ "discogs-haskell" = dontDistribute super."discogs-haskell";
+ "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";
+ "dist-upload" = dontDistribute super."dist-upload";
+ "distributed-closure" = dontDistribute super."distributed-closure";
+ "distributed-process" = doDistribute super."distributed-process_0_5_5_1";
+ "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-ekg" = dontDistribute super."distributed-process-ekg";
+ "distributed-process-execution" = dontDistribute super."distributed-process-execution";
+ "distributed-process-extras" = dontDistribute super."distributed-process-extras";
+ "distributed-process-lifted" = dontDistribute super."distributed-process-lifted";
+ "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" = dontDistribute super."distributed-process-simplelocalnet";
+ "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";
+ "distribution" = dontDistribute super."distribution";
+ "distribution-plot" = dontDistribute super."distribution-plot";
+ "dixi" = doDistribute super."dixi_0_6_0_5";
+ "djembe" = dontDistribute super."djembe";
+ "djinn" = dontDistribute super."djinn";
+ "djinn-th" = dontDistribute super."djinn-th";
+ "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";
+ "doctest" = doDistribute super."doctest_0_10_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-parser" = dontDistribute super."dom-parser";
+ "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" = doDistribute super."dotenv_0_1_0_9";
+ "dotfs" = dontDistribute super."dotfs";
+ "dotgen" = dontDistribute super."dotgen";
+ "dotnet-timespan" = dontDistribute super."dotnet-timespan";
+ "double-metaphone" = dontDistribute super."double-metaphone";
+ "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";
+ "dpor" = dontDistribute super."dpor";
+ "drClickOn" = dontDistribute super."drClickOn";
+ "draw-poker" = dontDistribute super."draw-poker";
+ "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe";
+ "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";
+ "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";
+ "dynobud" = dontDistribute super."dynobud";
+ "dywapitchtrack" = dontDistribute super."dywapitchtrack";
+ "dzen-utils" = dontDistribute super."dzen-utils";
+ "eager-sockets" = dontDistribute super."eager-sockets";
+ "easy-api" = dontDistribute super."easy-api";
+ "easy-bitcoin" = dontDistribute super."easy-bitcoin";
+ "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";
+ "edenmodules" = dontDistribute super."edenmodules";
+ "edenskel" = dontDistribute super."edenskel";
+ "edentv" = dontDistribute super."edentv";
+ "edge" = dontDistribute super."edge";
+ "edis" = dontDistribute super."edis";
+ "edit-lenses" = dontDistribute super."edit-lenses";
+ "edit-lenses-demo" = dontDistribute super."edit-lenses-demo";
+ "editable" = dontDistribute super."editable";
+ "editline" = dontDistribute super."editline";
+ "editpipe" = dontDistribute super."editpipe";
+ "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";
+ "eithers" = dontDistribute super."eithers";
+ "ekg-bosun" = dontDistribute super."ekg-bosun";
+ "ekg-carbon" = dontDistribute super."ekg-carbon";
+ "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";
+ "elision" = dontDistribute super."elision";
+ "elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
+ "elm-build-lib" = dontDistribute super."elm-build-lib";
+ "elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
+ "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";
+ "elo" = dontDistribute super."elo";
+ "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-json" = dontDistribute super."email-validate-json";
+ "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-growler" = dontDistribute super."engine-io-growler";
+ "engine-io-snap" = dontDistribute super."engine-io-snap";
+ "engineering-units" = dontDistribute super."engineering-units";
+ "enumerable" = dontDistribute super."enumerable";
+ "enumerate" = dontDistribute super."enumerate";
+ "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";
+ "envelope" = dontDistribute super."envelope";
+ "envparse" = dontDistribute super."envparse";
+ "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";
+ "equal-files" = dontDistribute super."equal-files";
+ "equational-reasoning" = dontDistribute super."equational-reasoning";
+ "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-analyze" = dontDistribute super."error-analyze";
+ "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";
+ "error-util" = dontDistribute super."error-util";
+ "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance";
+ "ersatz" = dontDistribute super."ersatz";
+ "ersatz-toysat" = dontDistribute super."ersatz-toysat";
+ "ert" = dontDistribute super."ert";
+ "esotericbot" = dontDistribute super."esotericbot";
+ "ess" = dontDistribute super."ess";
+ "estimator" = dontDistribute super."estimator";
+ "estimators" = dontDistribute super."estimators";
+ "estreps" = dontDistribute super."estreps";
+ "eternal" = dontDistribute super."eternal";
+ "ether" = doDistribute super."ether_0_3_1_1";
+ "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-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";
+ "eventsourced" = dontDistribute super."eventsourced";
+ "eventstore" = doDistribute super."eventstore_0_10_0_2";
+ "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" = doDistribute super."exact-pi_0_4_1_1";
+ "exception-hierarchy" = dontDistribute super."exception-hierarchy";
+ "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";
+ "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";
+ "existential" = dontDistribute super."existential";
+ "exists" = dontDistribute super."exists";
+ "exit-codes" = dontDistribute super."exit-codes";
+ "exp-extended" = dontDistribute super."exp-extended";
+ "exp-pairs" = dontDistribute super."exp-pairs";
+ "expand" = dontDistribute super."expand";
+ "expat-enumerator" = dontDistribute super."expat-enumerator";
+ "expiring-mvar" = dontDistribute super."expiring-mvar";
+ "explain" = dontDistribute super."explain";
+ "explicit-determinant" = dontDistribute super."explicit-determinant";
+ "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";
+ "external-sort" = dontDistribute super."external-sort";
+ "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";
+ "fadno-braids" = dontDistribute super."fadno-braids";
+ "failable-list" = dontDistribute super."failable-list";
+ "failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
+ "fair-predicates" = dontDistribute super."fair-predicates";
+ "fake-type" = dontDistribute super."fake-type";
+ "faker" = dontDistribute super."faker";
+ "falling-turnip" = dontDistribute super."falling-turnip";
+ "fallingblocks" = dontDistribute super."fallingblocks";
+ "family-tree" = dontDistribute super."family-tree";
+ "fast-builder" = doDistribute super."fast-builder_0_0_0_4";
+ "fast-digits" = dontDistribute super."fast-digits";
+ "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";
+ "fastbayes" = dontDistribute super."fastbayes";
+ "fastcgi" = dontDistribute super."fastcgi";
+ "fastedit" = dontDistribute super."fastedit";
+ "fastirc" = dontDistribute super."fastirc";
+ "fault-tree" = dontDistribute super."fault-tree";
+ "fay-geoposition" = dontDistribute super."fay-geoposition";
+ "fay-hsx" = dontDistribute super."fay-hsx";
+ "fay-ref" = dontDistribute super."fay-ref";
+ "fca" = dontDistribute super."fca";
+ "fcache" = dontDistribute super."fcache";
+ "fcd" = dontDistribute super."fcd";
+ "fckeditor" = dontDistribute super."fckeditor";
+ "fclabels-monadlib" = dontDistribute super."fclabels-monadlib";
+ "fdo-trash" = dontDistribute super."fdo-trash";
+ "fec" = dontDistribute super."fec";
+ "fedora-packages" = dontDistribute super."fedora-packages";
+ "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";
+ "fftwRaw" = dontDistribute super."fftwRaw";
+ "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";
+ "filediff" = dontDistribute super."filediff";
+ "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-clumpiness" = dontDistribute super."find-clumpiness";
+ "find-conduit" = dontDistribute super."find-conduit";
+ "fingertree-tf" = dontDistribute super."fingertree-tf";
+ "finite-field" = dontDistribute super."finite-field";
+ "finite-typelits" = dontDistribute super."finite-typelits";
+ "first-and-last" = dontDistribute super."first-and-last";
+ "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-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-binary" = dontDistribute super."fixed-vector-binary";
+ "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
+ "fixedprec" = dontDistribute super."fixedprec";
+ "fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
+ "fixfile" = dontDistribute super."fixfile";
+ "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-maybe" = dontDistribute super."flat-maybe";
+ "flat-mcmc" = dontDistribute super."flat-mcmc";
+ "flat-tex" = dontDistribute super."flat-tex";
+ "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";
+ "flow2dot" = dontDistribute super."flow2dot";
+ "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";
+ "fltkhs-demos" = dontDistribute super."fltkhs-demos";
+ "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos";
+ "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples";
+ "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world";
+ "fluent-logger" = dontDistribute super."fluent-logger";
+ "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit";
+ "fluidsynth" = dontDistribute super."fluidsynth";
+ "fmark" = dontDistribute super."fmark";
+ "fn" = doDistribute super."fn_0_2_0_2";
+ "fn-extra" = doDistribute super."fn-extra_0_2_0_1";
+ "fold-debounce" = dontDistribute super."fold-debounce";
+ "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit";
+ "foldl" = doDistribute super."foldl_1_1_6";
+ "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";
+ "fordo" = dontDistribute super."fordo";
+ "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric";
+ "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";
+ "forml" = dontDistribute super."forml";
+ "formlets" = dontDistribute super."formlets";
+ "formlets-hsp" = dontDistribute super."formlets-hsp";
+ "formura" = dontDistribute super."formura";
+ "forth-hll" = dontDistribute super."forth-hll";
+ "foscam-directory" = dontDistribute super."foscam-directory";
+ "foscam-filename" = dontDistribute super."foscam-filename";
+ "foscam-sort" = dontDistribute super."foscam-sort";
+ "fountain" = dontDistribute super."fountain";
+ "fpco-api" = dontDistribute super."fpco-api";
+ "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";
+ "freddy" = dontDistribute super."freddy";
+ "free-concurrent" = dontDistribute super."free-concurrent";
+ "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";
+ "free-vl" = dontDistribute super."free-vl";
+ "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";
+ "fresco-binding" = dontDistribute super."fresco-binding";
+ "fresh" = dontDistribute super."fresh";
+ "friday" = dontDistribute super."friday";
+ "friday-devil" = dontDistribute super."friday-devil";
+ "friday-juicypixels" = dontDistribute super."friday-juicypixels";
+ "friday-scale-dct" = dontDistribute super."friday-scale-dct";
+ "friendly-time" = dontDistribute super."friendly-time";
+ "frown" = dontDistribute super."frown";
+ "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";
+ "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";
+ "funbot-git-hook" = dontDistribute super."funbot-git-hook";
+ "funcons-tools" = dontDistribute super."funcons-tools";
+ "function-combine" = dontDistribute super."function-combine";
+ "function-instances-algebra" = dontDistribute super."function-instances-algebra";
+ "functional-arrow" = dontDistribute super."functional-arrow";
+ "functional-kmp" = dontDistribute super."functional-kmp";
+ "functor-apply" = dontDistribute super."functor-apply";
+ "functor-combo" = dontDistribute super."functor-combo";
+ "functor-infix" = dontDistribute super."functor-infix";
+ "functor-monadic" = dontDistribute super."functor-monadic";
+ "functor-utils" = dontDistribute super."functor-utils";
+ "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";
+ "gdo" = dontDistribute super."gdo";
+ "gearbox" = dontDistribute super."gearbox";
+ "geek" = dontDistribute super."geek";
+ "geek-server" = dontDistribute super."geek-server";
+ "gelatin" = dontDistribute super."gelatin";
+ "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-binary" = dontDistribute super."generic-binary";
+ "generic-church" = dontDistribute super."generic-church";
+ "generic-deepseq" = dontDistribute super."generic-deepseq";
+ "generic-deriving" = doDistribute super."generic-deriving_1_9_0";
+ "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
+ "generic-maybe" = dontDistribute super."generic-maybe";
+ "generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
+ "generic-server" = dontDistribute super."generic-server";
+ "generic-storable" = dontDistribute super."generic-storable";
+ "generic-tree" = dontDistribute super."generic-tree";
+ "generic-xml" = dontDistribute super."generic-xml";
+ "generics-sop-lens" = dontDistribute super."generics-sop-lens";
+ "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";
+ "geniserver" = dontDistribute super."geniserver";
+ "genprog" = dontDistribute super."genprog";
+ "gentlemark" = dontDistribute super."gentlemark";
+ "geo-resolver" = dontDistribute super."geo-resolver";
+ "geo-uk" = dontDistribute super."geo-uk";
+ "geocalc" = dontDistribute super."geocalc";
+ "geocode-google" = dontDistribute super."geocode-google";
+ "geodetic" = dontDistribute super."geodetic";
+ "geodetics" = dontDistribute super."geodetics";
+ "geohash" = dontDistribute super."geohash";
+ "geoip2" = dontDistribute super."geoip2";
+ "geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
+ "geom2d" = dontDistribute super."geom2d";
+ "getemx" = dontDistribute super."getemx";
+ "getflag" = dontDistribute super."getflag";
+ "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-dump-tree" = dontDistribute super."ghc-dump-tree";
+ "ghc-dup" = dontDistribute super."ghc-dup";
+ "ghc-events-analyze" = dontDistribute super."ghc-events-analyze";
+ "ghc-events-parallel" = dontDistribute super."ghc-events-parallel";
+ "ghc-gc-tune" = dontDistribute super."ghc-gc-tune";
+ "ghc-generic-instances" = dontDistribute super."ghc-generic-instances";
+ "ghc-imported-from" = dontDistribute super."ghc-imported-from";
+ "ghc-make" = dontDistribute super."ghc-make";
+ "ghc-man-completion" = dontDistribute super."ghc-man-completion";
+ "ghc-options" = dontDistribute super."ghc-options";
+ "ghc-parmake" = dontDistribute super."ghc-parmake";
+ "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-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
+ "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_5_1";
+ "ghcjs-ajax" = dontDistribute super."ghcjs-ajax";
+ "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror";
+ "ghcjs-dom" = dontDistribute super."ghcjs-dom";
+ "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello";
+ "ghcjs-hplay" = dontDistribute super."ghcjs-hplay";
+ "ghcjs-websockets" = dontDistribute super."ghcjs-websockets";
+ "ghclive" = dontDistribute super."ghclive";
+ "ghczdecode" = dontDistribute super."ghczdecode";
+ "ght" = dontDistribute super."ght";
+ "gi-atk" = dontDistribute super."gi-atk";
+ "gi-cairo" = dontDistribute super."gi-cairo";
+ "gi-gdk" = dontDistribute super."gi-gdk";
+ "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf";
+ "gi-gio" = dontDistribute super."gi-gio";
+ "gi-girepository" = dontDistribute super."gi-girepository";
+ "gi-glib" = dontDistribute super."gi-glib";
+ "gi-gobject" = dontDistribute super."gi-gobject";
+ "gi-gst" = dontDistribute super."gi-gst";
+ "gi-gstaudio" = dontDistribute super."gi-gstaudio";
+ "gi-gstbase" = dontDistribute super."gi-gstbase";
+ "gi-gstvideo" = dontDistribute super."gi-gstvideo";
+ "gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
+ "gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
+ "gi-notify" = dontDistribute super."gi-notify";
+ "gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
+ "gi-poppler" = dontDistribute super."gi-poppler";
+ "gi-soup" = dontDistribute super."gi-soup";
+ "gi-vte" = dontDistribute super."gi-vte";
+ "gi-webkit" = dontDistribute super."gi-webkit";
+ "gi-webkit2" = dontDistribute super."gi-webkit2";
+ "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension";
+ "gimlh" = dontDistribute super."gimlh";
+ "ginger" = dontDistribute super."ginger";
+ "ginsu" = dontDistribute super."ginsu";
+ "giphy-api" = dontDistribute super."giphy-api";
+ "gist" = dontDistribute super."gist";
+ "git-all" = dontDistribute super."git-all";
+ "git-annex" = doDistribute super."git-annex_6_20160114";
+ "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-jump" = dontDistribute super."git-jump";
+ "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";
+ "gitHUD" = dontDistribute super."gitHUD";
+ "gitcache" = dontDistribute super."gitcache";
+ "gitdo" = dontDistribute super."gitdo";
+ "github-backup" = dontDistribute super."github-backup";
+ "github-post-receive" = dontDistribute super."github-post-receive";
+ "github-release" = dontDistribute super."github-release";
+ "github-utils" = dontDistribute super."github-utils";
+ "gitignore" = dontDistribute super."gitignore";
+ "gitit" = dontDistribute super."gitit";
+ "gitlib-cmdline" = dontDistribute super."gitlib-cmdline";
+ "gitlib-cross" = dontDistribute super."gitlib-cross";
+ "gitlib-s3" = dontDistribute super."gitlib-s3";
+ "gitlib-sample" = dontDistribute super."gitlib-sample";
+ "gitlib-utils" = dontDistribute super."gitlib-utils";
+ "gitter" = dontDistribute super."gitter";
+ "givegif" = dontDistribute super."givegif";
+ "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";
+ "glicko" = dontDistribute super."glicko";
+ "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";
+ "gnss-converters" = dontDistribute super."gnss-converters";
+ "gnuplot" = dontDistribute super."gnuplot";
+ "goa" = dontDistribute super."goa";
+ "goal-core" = dontDistribute super."goal-core";
+ "goal-geometry" = dontDistribute super."goal-geometry";
+ "goal-probability" = dontDistribute super."goal-probability";
+ "goal-simulation" = dontDistribute super."goal-simulation";
+ "goatee" = dontDistribute super."goatee";
+ "goatee-gtk" = dontDistribute super."goatee-gtk";
+ "gofer-prelude" = dontDistribute super."gofer-prelude";
+ "gogol" = dontDistribute super."gogol";
+ "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer";
+ "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller";
+ "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer";
+ "gogol-admin-directory" = dontDistribute super."gogol-admin-directory";
+ "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration";
+ "gogol-admin-reports" = dontDistribute super."gogol-admin-reports";
+ "gogol-adsense" = dontDistribute super."gogol-adsense";
+ "gogol-adsense-host" = dontDistribute super."gogol-adsense-host";
+ "gogol-affiliates" = dontDistribute super."gogol-affiliates";
+ "gogol-analytics" = dontDistribute super."gogol-analytics";
+ "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise";
+ "gogol-android-publisher" = dontDistribute super."gogol-android-publisher";
+ "gogol-appengine" = dontDistribute super."gogol-appengine";
+ "gogol-apps-activity" = dontDistribute super."gogol-apps-activity";
+ "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar";
+ "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing";
+ "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller";
+ "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks";
+ "gogol-appstate" = dontDistribute super."gogol-appstate";
+ "gogol-autoscaler" = dontDistribute super."gogol-autoscaler";
+ "gogol-bigquery" = dontDistribute super."gogol-bigquery";
+ "gogol-billing" = dontDistribute super."gogol-billing";
+ "gogol-blogger" = dontDistribute super."gogol-blogger";
+ "gogol-books" = dontDistribute super."gogol-books";
+ "gogol-civicinfo" = dontDistribute super."gogol-civicinfo";
+ "gogol-classroom" = dontDistribute super."gogol-classroom";
+ "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace";
+ "gogol-compute" = dontDistribute super."gogol-compute";
+ "gogol-container" = dontDistribute super."gogol-container";
+ "gogol-core" = dontDistribute super."gogol-core";
+ "gogol-customsearch" = dontDistribute super."gogol-customsearch";
+ "gogol-dataflow" = dontDistribute super."gogol-dataflow";
+ "gogol-datastore" = dontDistribute super."gogol-datastore";
+ "gogol-debugger" = dontDistribute super."gogol-debugger";
+ "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager";
+ "gogol-dfareporting" = dontDistribute super."gogol-dfareporting";
+ "gogol-discovery" = dontDistribute super."gogol-discovery";
+ "gogol-dns" = dontDistribute super."gogol-dns";
+ "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids";
+ "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search";
+ "gogol-drive" = dontDistribute super."gogol-drive";
+ "gogol-fitness" = dontDistribute super."gogol-fitness";
+ "gogol-fonts" = dontDistribute super."gogol-fonts";
+ "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch";
+ "gogol-fusiontables" = dontDistribute super."gogol-fusiontables";
+ "gogol-games" = dontDistribute super."gogol-games";
+ "gogol-games-configuration" = dontDistribute super."gogol-games-configuration";
+ "gogol-games-management" = dontDistribute super."gogol-games-management";
+ "gogol-genomics" = dontDistribute super."gogol-genomics";
+ "gogol-gmail" = dontDistribute super."gogol-gmail";
+ "gogol-groups-migration" = dontDistribute super."gogol-groups-migration";
+ "gogol-groups-settings" = dontDistribute super."gogol-groups-settings";
+ "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit";
+ "gogol-latencytest" = dontDistribute super."gogol-latencytest";
+ "gogol-logging" = dontDistribute super."gogol-logging";
+ "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate";
+ "gogol-maps-engine" = dontDistribute super."gogol-maps-engine";
+ "gogol-mirror" = dontDistribute super."gogol-mirror";
+ "gogol-monitoring" = dontDistribute super."gogol-monitoring";
+ "gogol-oauth2" = dontDistribute super."gogol-oauth2";
+ "gogol-pagespeed" = dontDistribute super."gogol-pagespeed";
+ "gogol-partners" = dontDistribute super."gogol-partners";
+ "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner";
+ "gogol-plus" = dontDistribute super."gogol-plus";
+ "gogol-plus-domains" = dontDistribute super."gogol-plus-domains";
+ "gogol-prediction" = dontDistribute super."gogol-prediction";
+ "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon";
+ "gogol-pubsub" = dontDistribute super."gogol-pubsub";
+ "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress";
+ "gogol-replicapool" = dontDistribute super."gogol-replicapool";
+ "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater";
+ "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager";
+ "gogol-resourceviews" = dontDistribute super."gogol-resourceviews";
+ "gogol-shopping-content" = dontDistribute super."gogol-shopping-content";
+ "gogol-siteverification" = dontDistribute super."gogol-siteverification";
+ "gogol-spectrum" = dontDistribute super."gogol-spectrum";
+ "gogol-sqladmin" = dontDistribute super."gogol-sqladmin";
+ "gogol-storage" = dontDistribute super."gogol-storage";
+ "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer";
+ "gogol-tagmanager" = dontDistribute super."gogol-tagmanager";
+ "gogol-taskqueue" = dontDistribute super."gogol-taskqueue";
+ "gogol-translate" = dontDistribute super."gogol-translate";
+ "gogol-urlshortener" = dontDistribute super."gogol-urlshortener";
+ "gogol-useraccounts" = dontDistribute super."gogol-useraccounts";
+ "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools";
+ "gogol-youtube" = dontDistribute super."gogol-youtube";
+ "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics";
+ "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting";
+ "gooey" = dontDistribute super."gooey";
+ "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";
+ "googleplus" = dontDistribute super."googleplus";
+ "googlepolyline" = dontDistribute super."googlepolyline";
+ "gopherbot" = dontDistribute super."gopherbot";
+ "gore-and-ash" = dontDistribute super."gore-and-ash";
+ "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor";
+ "gore-and-ash-async" = dontDistribute super."gore-and-ash-async";
+ "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo";
+ "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw";
+ "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging";
+ "gore-and-ash-network" = dontDistribute super."gore-and-ash-network";
+ "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl";
+ "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync";
+ "gpah" = dontDistribute super."gpah";
+ "gpcsets" = dontDistribute super."gpcsets";
+ "gpio" = dontDistribute super."gpio";
+ "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_2_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";
+ "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";
+ "graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
+ "grasp" = dontDistribute super."grasp";
+ "gray-code" = dontDistribute super."gray-code";
+ "gray-extended" = dontDistribute super."gray-extended";
+ "graylog" = dontDistribute super."graylog";
+ "greencard" = dontDistribute super."greencard";
+ "greencard-lib" = dontDistribute super."greencard-lib";
+ "greg-client" = dontDistribute super."greg-client";
+ "gremlin-haskell" = dontDistribute super."gremlin-haskell";
+ "greplicate" = dontDistribute super."greplicate";
+ "grid" = dontDistribute super."grid";
+ "gridfs" = dontDistribute super."gridfs";
+ "gridland" = dontDistribute super."gridland";
+ "grm" = dontDistribute super."grm";
+ "groundhog-converters" = dontDistribute super."groundhog-converters";
+ "groundhog-inspector" = dontDistribute super."groundhog-inspector";
+ "group-with" = dontDistribute super."group-with";
+ "groupoid" = dontDistribute super."groupoid";
+ "gruff" = dontDistribute super."gruff";
+ "gruff-examples" = dontDistribute super."gruff-examples";
+ "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-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-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-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";
+ "guid" = dontDistribute super."guid";
+ "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";
+ "hPDB-examples" = dontDistribute super."hPDB-examples";
+ "hPushover" = dontDistribute super."hPushover";
+ "hR" = dontDistribute super."hR";
+ "hRESP" = dontDistribute super."hRESP";
+ "hS3" = dontDistribute super."hS3";
+ "hScraper" = dontDistribute super."hScraper";
+ "hSimpleDB" = dontDistribute super."hSimpleDB";
+ "hTalos" = dontDistribute super."hTalos";
+ "hTensor" = dontDistribute super."hTensor";
+ "hVOIDP" = dontDistribute super."hVOIDP";
+ "hXmixer" = dontDistribute super."hXmixer";
+ "haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
+ "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-diff" = dontDistribute super."hackage-diff";
+ "hackage-plot" = dontDistribute super."hackage-plot";
+ "hackage-processing" = dontDistribute super."hackage-processing";
+ "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";
+ "hackport" = dontDistribute super."hackport";
+ "hactor" = dontDistribute super."hactor";
+ "hactors" = dontDistribute super."hactors";
+ "haddock" = dontDistribute super."haddock";
+ "haddock-leksah" = dontDistribute super."haddock-leksah";
+ "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";
+ "hahp" = dontDistribute super."hahp";
+ "haiji" = dontDistribute super."haiji";
+ "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" = doDistribute super."hakyll_4_7_5_2";
+ "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-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
+ "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-filestore" = dontDistribute super."hakyll-filestore";
+ "hakyll-sass" = dontDistribute super."hakyll-sass";
+ "halberd" = dontDistribute super."halberd";
+ "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";
+ "handa-opengl" = dontDistribute super."handa-opengl";
+ "handle-like" = dontDistribute super."handle-like";
+ "handsy" = dontDistribute super."handsy";
+ "handwriting" = dontDistribute super."handwriting";
+ "hangman" = dontDistribute super."hangman";
+ "hannahci" = dontDistribute super."hannahci";
+ "hans" = dontDistribute super."hans";
+ "hans-pcap" = dontDistribute super."hans-pcap";
+ "hans-pfq" = dontDistribute super."hans-pfq";
+ "haphviz" = dontDistribute super."haphviz";
+ "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-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-hstringtemplate" = dontDistribute super."happstack-hstringtemplate";
+ "happstack-ixset" = dontDistribute super."happstack-ixset";
+ "happstack-lite" = dontDistribute super."happstack-lite";
+ "happstack-monad-peel" = dontDistribute super."happstack-monad-peel";
+ "happstack-plugins" = dontDistribute super."happstack-plugins";
+ "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";
+ "hapstone" = dontDistribute super."hapstone";
+ "har" = dontDistribute super."har";
+ "harchive" = dontDistribute super."harchive";
+ "hardware-edsl" = dontDistribute super."hardware-edsl";
+ "hark" = dontDistribute super."hark";
+ "harmony" = dontDistribute super."harmony";
+ "haroonga" = dontDistribute super."haroonga";
+ "haroonga-httpd" = dontDistribute super."haroonga-httpd";
+ "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-generics" = dontDistribute super."hashable-generics";
+ "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" = doDistribute super."haskeline_0_7_2_3";
+ "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-exp-parser" = dontDistribute super."haskell-exp-parser";
+ "haskell-formatter" = dontDistribute super."haskell-formatter";
+ "haskell-ftp" = dontDistribute super."haskell-ftp";
+ "haskell-generate" = dontDistribute super."haskell-generate";
+ "haskell-gi" = dontDistribute super."haskell-gi";
+ "haskell-gi-base" = dontDistribute super."haskell-gi-base";
+ "haskell-import-graph" = dontDistribute super."haskell-import-graph";
+ "haskell-in-space" = dontDistribute super."haskell-in-space";
+ "haskell-kubernetes" = dontDistribute super."haskell-kubernetes";
+ "haskell-modbus" = dontDistribute super."haskell-modbus";
+ "haskell-mpfr" = dontDistribute super."haskell-mpfr";
+ "haskell-mpi" = dontDistribute super."haskell-mpi";
+ "haskell-names" = dontDistribute super."haskell-names";
+ "haskell-openflow" = dontDistribute super."haskell-openflow";
+ "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-read-editor" = dontDistribute super."haskell-read-editor";
+ "haskell-reflect" = dontDistribute super."haskell-reflect";
+ "haskell-rules" = dontDistribute super."haskell-rules";
+ "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq";
+ "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton";
+ "haskell-token-utils" = dontDistribute super."haskell-token-utils";
+ "haskell-tor" = dontDistribute super."haskell-tor";
+ "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";
+ "haskell2010" = dontDistribute super."haskell2010";
+ "haskell98" = dontDistribute super."haskell98";
+ "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";
+ "haskmon" = dontDistribute super."haskmon";
+ "haskoin" = dontDistribute super."haskoin";
+ "haskoin-core" = dontDistribute super."haskoin-core";
+ "haskoin-crypto" = dontDistribute super."haskoin-crypto";
+ "haskoin-node" = dontDistribute super."haskoin-node";
+ "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_19_6";
+ "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative";
+ "hasql-pool" = dontDistribute super."hasql-pool";
+ "hasql-postgres" = dontDistribute super."hasql-postgres";
+ "hasql-postgres-options" = dontDistribute super."hasql-postgres-options";
+ "hasql-th" = dontDistribute super."hasql-th";
+ "hasql-transaction" = dontDistribute super."hasql-transaction";
+ "hastache-aeson" = dontDistribute super."hastache-aeson";
+ "haste" = dontDistribute super."haste";
+ "haste-compiler" = dontDistribute super."haste-compiler";
+ "haste-gapi" = dontDistribute super."haste-gapi";
+ "haste-markup" = dontDistribute super."haste-markup";
+ "haste-perch" = dontDistribute super."haste-perch";
+ "hastily" = dontDistribute super."hastily";
+ "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-amazonka" = dontDistribute super."haxl-amazonka";
+ "haxl-facebook" = dontDistribute super."haxl-facebook";
+ "haxparse" = dontDistribute super."haxparse";
+ "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";
+ "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";
+ "hcoap" = dontDistribute super."hcoap";
+ "hcron" = dontDistribute super."hcron";
+ "hcube" = dontDistribute super."hcube";
+ "hcwiid" = dontDistribute super."hcwiid";
+ "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";
+ "hdf" = dontDistribute super."hdf";
+ "hdigest" = dontDistribute super."hdigest";
+ "hdirect" = dontDistribute super."hdirect";
+ "hdis86" = dontDistribute super."hdis86";
+ "hdiscount" = dontDistribute super."hdiscount";
+ "hdm" = dontDistribute super."hdm";
+ "hdph" = dontDistribute super."hdph";
+ "hdph-closure" = dontDistribute super."hdph-closure";
+ "hdr-histogram" = dontDistribute super."hdr-histogram";
+ "headergen" = dontDistribute super."headergen";
+ "heapsort" = dontDistribute super."heapsort";
+ "hecc" = dontDistribute super."hecc";
+ "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-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";
+ "helix" = dontDistribute super."helix";
+ "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";
+ "heredocs" = dontDistribute super."heredocs";
+ "herf-time" = dontDistribute super."herf-time";
+ "hermit" = dontDistribute super."hermit";
+ "hermit-syb" = dontDistribute super."hermit-syb";
+ "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets";
+ "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";
+ "hesh" = dontDistribute super."hesh";
+ "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";
+ "hexdump" = dontDistribute super."hexdump";
+ "hexif" = dontDistribute super."hexif";
+ "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";
+ "heyefi" = dontDistribute super."heyefi";
+ "hfann" = dontDistribute super."hfann";
+ "hfd" = dontDistribute super."hfd";
+ "hfiar" = dontDistribute super."hfiar";
+ "hfmt" = dontDistribute super."hfmt";
+ "hfoil" = dontDistribute super."hfoil";
+ "hformat" = dontDistribute super."hformat";
+ "hfov" = dontDistribute super."hfov";
+ "hfractal" = dontDistribute super."hfractal";
+ "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";
+ "hgithub" = dontDistribute super."hgithub";
+ "hgl-example" = dontDistribute super."hgl-example";
+ "hgom" = dontDistribute super."hgom";
+ "hgopher" = dontDistribute super."hgopher";
+ "hgrev" = dontDistribute super."hgrev";
+ "hgrib" = dontDistribute super."hgrib";
+ "hharp" = dontDistribute super."hharp";
+ "hi" = dontDistribute super."hi";
+ "hi3status" = dontDistribute super."hi3status";
+ "hiccup" = dontDistribute super."hiccup";
+ "hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
+ "hieraclus" = dontDistribute super."hieraclus";
+ "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";
+ "highlight-versions" = dontDistribute super."highlight-versions";
+ "highlighter" = dontDistribute super."highlighter";
+ "highlighter2" = dontDistribute super."highlighter2";
+ "hills" = dontDistribute super."hills";
+ "himerge" = dontDistribute super."himerge";
+ "himg" = dontDistribute super."himg";
+ "himpy" = dontDistribute super."himpy";
+ "hindley-milner" = dontDistribute super."hindley-milner";
+ "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-bytestring" = dontDistribute super."hinotify-bytestring";
+ "hinquire" = dontDistribute super."hinquire";
+ "hinstaller" = dontDistribute super."hinstaller";
+ "hint" = doDistribute super."hint_0_4_3";
+ "hint-server" = dontDistribute super."hint-server";
+ "hinvaders" = dontDistribute super."hinvaders";
+ "hinze-streams" = dontDistribute super."hinze-streams";
+ "hip" = dontDistribute super."hip";
+ "hipbot" = dontDistribute super."hipbot";
+ "hipchat-hs" = dontDistribute super."hipchat-hs";
+ "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";
+ "hit-graph" = dontDistribute super."hit-graph";
+ "hjcase" = dontDistribute super."hjcase";
+ "hjpath" = dontDistribute super."hjpath";
+ "hjs" = dontDistribute super."hjs";
+ "hjsmin" = doDistribute super."hjsmin_0_1_5_3";
+ "hjson" = dontDistribute super."hjson";
+ "hjson-query" = dontDistribute super."hjson-query";
+ "hjsonpointer" = dontDistribute super."hjsonpointer";
+ "hjsonschema" = dontDistribute super."hjsonschema";
+ "hkdf" = dontDistribute super."hkdf";
+ "hlatex" = dontDistribute super."hlatex";
+ "hlbfgsb" = dontDistribute super."hlbfgsb";
+ "hlcm" = dontDistribute super."hlcm";
+ "hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
+ "hledger-chart" = dontDistribute super."hledger-chart";
+ "hledger-diff" = dontDistribute super."hledger-diff";
+ "hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
+ "hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
+ "hlibBladeRF" = dontDistribute super."hlibBladeRF";
+ "hlibev" = dontDistribute super."hlibev";
+ "hlibfam" = dontDistribute super."hlibfam";
+ "hlint" = doDistribute super."hlint_1_9_31";
+ "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-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";
+ "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";
+ "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-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_17_1";
+ "hopfield" = dontDistribute super."hopfield";
+ "hopfield-networks" = dontDistribute super."hopfield-networks";
+ "hopfli" = dontDistribute super."hopfli";
+ "hoppy-generator" = dontDistribute super."hoppy-generator";
+ "hoppy-runtime" = dontDistribute super."hoppy-runtime";
+ "hoppy-std" = dontDistribute super."hoppy-std";
+ "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-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing";
+ "houseman" = dontDistribute super."houseman";
+ "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";
+ "hpath" = dontDistribute super."hpath";
+ "hpc-strobe" = dontDistribute super."hpc-strobe";
+ "hpc-tracer" = dontDistribute super."hpc-tracer";
+ "hpdft" = dontDistribute super."hpdft";
+ "hplayground" = dontDistribute super."hplayground";
+ "hplaylist" = dontDistribute super."hplaylist";
+ "hpodder" = dontDistribute super."hpodder";
+ "hpp" = dontDistribute super."hpp";
+ "hpqtypes" = dontDistribute super."hpqtypes";
+ "hprotoc" = doDistribute super."hprotoc_2_1_12";
+ "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";
+ "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_23";
+ "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" = doDistribute super."hsebaysdk_0_3_1_0";
+ "hsemail-ns" = dontDistribute super."hsemail-ns";
+ "hsenv" = dontDistribute super."hsenv";
+ "hserv" = dontDistribute super."hserv";
+ "hset" = dontDistribute super."hset";
+ "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";
+ "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-reader" = dontDistribute super."hslogger-reader";
+ "hslogger-template" = dontDistribute super."hslogger-template";
+ "hslogger4j" = dontDistribute super."hslogger4j";
+ "hslogstash" = dontDistribute super."hslogstash";
+ "hsmagick" = dontDistribute super."hsmagick";
+ "hsmisc" = dontDistribute super."hsmisc";
+ "hsmtpclient" = dontDistribute super."hsmtpclient";
+ "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector";
+ "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-cgi" = dontDistribute super."hsp-cgi";
+ "hsparklines" = dontDistribute super."hsparklines";
+ "hsparql" = dontDistribute super."hsparql";
+ "hspear" = dontDistribute super."hspear";
+ "hspec-checkers" = dontDistribute super."hspec-checkers";
+ "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-experimental" = dontDistribute super."hspec-experimental";
+ "hspec-laws" = dontDistribute super."hspec-laws";
+ "hspec-monad-control" = dontDistribute super."hspec-monad-control";
+ "hspec-server" = dontDistribute super."hspec-server";
+ "hspec-shouldbe" = dontDistribute super."hspec-shouldbe";
+ "hspec-slow" = dontDistribute super."hspec-slow";
+ "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_5";
+ "hspec2" = dontDistribute super."hspec2";
+ "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";
+ "hsseccomp" = dontDistribute super."hsseccomp";
+ "hsshellscript" = dontDistribute super."hsshellscript";
+ "hssourceinfo" = dontDistribute super."hssourceinfo";
+ "hssqlppp" = dontDistribute super."hssqlppp";
+ "hssqlppp-th" = dontDistribute super."hssqlppp-th";
+ "hstats" = dontDistribute super."hstats";
+ "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-xhtml" = dontDistribute super."hsx-xhtml";
+ "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-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-parse" = dontDistribute super."html-parse";
+ "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-attoparsec" = dontDistribute super."http-attoparsec";
+ "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-request-modifiers" = dontDistribute super."http-client-request-modifiers";
+ "http-client-session" = dontDistribute super."http-client-session";
+ "http-client-streams" = dontDistribute super."http-client-streams";
+ "http-conduit-browser" = dontDistribute super."http-conduit-browser";
+ "http-conduit-downloader" = dontDistribute super."http-conduit-downloader";
+ "http-dispatch" = dontDistribute super."http-dispatch";
+ "http-encodings" = dontDistribute super."http-encodings";
+ "http-enumerator" = dontDistribute super."http-enumerator";
+ "http-kinder" = dontDistribute super."http-kinder";
+ "http-kit" = dontDistribute super."http-kit";
+ "http-listen" = dontDistribute super."http-listen";
+ "http-monad" = dontDistribute super."http-monad";
+ "http-proxy" = dontDistribute super."http-proxy";
+ "http-querystring" = dontDistribute super."http-querystring";
+ "http-response-decoder" = dontDistribute super."http-response-decoder";
+ "http-server" = dontDistribute super."http-server";
+ "http-shed" = dontDistribute super."http-shed";
+ "http-test" = dontDistribute super."http-test";
+ "http-wget" = dontDistribute super."http-wget";
+ "http2" = doDistribute super."http2_1_4_5";
+ "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";
+ "huckleberry" = dontDistribute super."huckleberry";
+ "huffman" = dontDistribute super."huffman";
+ "hugs2yc" = dontDistribute super."hugs2yc";
+ "hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
+ "hums" = dontDistribute super."hums";
+ "hunch" = dontDistribute super."hunch";
+ "hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
+ "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";
+ "hw-bits" = dontDistribute super."hw-bits";
+ "hw-conduit" = dontDistribute super."hw-conduit";
+ "hw-diagnostics" = dontDistribute super."hw-diagnostics";
+ "hw-json" = dontDistribute super."hw-json";
+ "hw-parser" = dontDistribute super."hw-parser";
+ "hw-prim" = dontDistribute super."hw-prim";
+ "hw-rankselect" = dontDistribute super."hw-rankselect";
+ "hw-succinct" = dontDistribute super."hw-succinct";
+ "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-extras" = dontDistribute super."hxt-extras";
+ "hxt-filter" = dontDistribute super."hxt-filter";
+ "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";
+ "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";
+ "hylogen" = dontDistribute super."hylogen";
+ "hylolib" = dontDistribute super."hylolib";
+ "hylotab" = dontDistribute super."hylotab";
+ "hyloutils" = dontDistribute super."hyloutils";
+ "hyperdrive" = dontDistribute super."hyperdrive";
+ "hyperfunctions" = dontDistribute super."hyperfunctions";
+ "hyperpublic" = dontDistribute super."hyperpublic";
+ "hyphenate" = dontDistribute super."hyphenate";
+ "hypher" = dontDistribute super."hypher";
+ "hzaif" = dontDistribute super."hzaif";
+ "hzk" = dontDistribute super."hzk";
+ "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";
+ "ibus-hs" = dontDistribute super."ibus-hs";
+ "ideas" = dontDistribute super."ideas";
+ "ideas-math" = dontDistribute super."ideas-math";
+ "idempotent" = dontDistribute super."idempotent";
+ "identifiers" = dontDistribute super."identifiers";
+ "idiii" = dontDistribute super."idiii";
+ "idna" = dontDistribute super."idna";
+ "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" = doDistribute super."ig_0_6_1";
+ "ige-mac-integration" = dontDistribute super."ige-mac-integration";
+ "igraph" = dontDistribute super."igraph";
+ "igrf" = dontDistribute super."igrf";
+ "ihaskell-display" = dontDistribute super."ihaskell-display";
+ "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r";
+ "ihaskell-parsec" = dontDistribute super."ihaskell-parsec";
+ "ihaskell-plot" = dontDistribute super."ihaskell-plot";
+ "ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
+ "ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
+ "illuminate" = dontDistribute super."illuminate";
+ "image-type" = dontDistribute super."image-type";
+ "imagefilters" = dontDistribute super."imagefilters";
+ "imagemagick" = dontDistribute super."imagemagick";
+ "imagepaste" = dontDistribute super."imagepaste";
+ "imap" = dontDistribute super."imap";
+ "imapget" = dontDistribute super."imapget";
+ "imbib" = dontDistribute super."imbib";
+ "imgurder" = dontDistribute super."imgurder";
+ "imm" = dontDistribute super."imm";
+ "imparse" = dontDistribute super."imparse";
+ "imperative-edsl" = dontDistribute super."imperative-edsl";
+ "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl";
+ "implicit" = dontDistribute super."implicit";
+ "implicit-logging" = dontDistribute super."implicit-logging";
+ "implicit-params" = dontDistribute super."implicit-params";
+ "imports" = dontDistribute super."imports";
+ "impossible" = dontDistribute super."impossible";
+ "improve" = dontDistribute super."improve";
+ "inc-ref" = dontDistribute super."inc-ref";
+ "inch" = dontDistribute super."inch";
+ "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";
+ "inf-interval" = dontDistribute super."inf-interval";
+ "infer-upstream" = dontDistribute super."infer-upstream";
+ "infernu" = dontDistribute super."infernu";
+ "infinite-search" = dontDistribute super."infinite-search";
+ "infinity" = dontDistribute super."infinity";
+ "infix" = dontDistribute super."infix";
+ "inflist" = dontDistribute super."inflist";
+ "influxdb" = dontDistribute super."influxdb";
+ "informative" = dontDistribute super."informative";
+ "inilist" = dontDistribute super."inilist";
+ "inject" = dontDistribute super."inject";
+ "inject-function" = dontDistribute super."inject-function";
+ "inline-c-win32" = dontDistribute super."inline-c-win32";
+ "inline-java" = dontDistribute super."inline-java";
+ "inquire" = dontDistribute super."inquire";
+ "insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
+ "inserts" = dontDistribute super."inserts";
+ "inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
+ "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";
+ "interlude-l" = dontDistribute super."interlude-l";
+ "intern" = dontDistribute super."intern";
+ "internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
+ "interpol" = dontDistribute super."interpol";
+ "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
+ "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
+ "interpolation" = dontDistribute super."interpolation";
+ "interruptible" = dontDistribute super."interruptible";
+ "interspersed" = dontDistribute super."interspersed";
+ "intricacy" = dontDistribute super."intricacy";
+ "intset" = dontDistribute super."intset";
+ "invertible" = dontDistribute super."invertible";
+ "invertible-syntax" = dontDistribute super."invertible-syntax";
+ "io-capture" = dontDistribute super."io-capture";
+ "io-machine" = dontDistribute super."io-machine";
+ "io-reactive" = dontDistribute super."io-reactive";
+ "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" = dontDistribute super."ip";
+ "ip-quoter" = dontDistribute super."ip-quoter";
+ "ipatch" = dontDistribute super."ipatch";
+ "ipc" = dontDistribute super."ipc";
+ "ipcvar" = dontDistribute super."ipcvar";
+ "ipopt-hs" = dontDistribute super."ipopt-hs";
+ "ipprint" = dontDistribute super."ipprint";
+ "iptables-helpers" = dontDistribute super."iptables-helpers";
+ "iptadmin" = dontDistribute super."iptadmin";
+ "irc-bytestring" = dontDistribute super."irc-bytestring";
+ "irc-client" = doDistribute super."irc-client_0_2_6_0";
+ "irc-colors" = dontDistribute super."irc-colors";
+ "irc-core" = dontDistribute super."irc-core";
+ "irc-dcc" = dontDistribute super."irc-dcc";
+ "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";
+ "irc-fun-types" = dontDistribute super."irc-fun-types";
+ "ircbot" = dontDistribute super."ircbot";
+ "ircbouncer" = dontDistribute super."ircbouncer";
+ "ireal" = dontDistribute super."ireal";
+ "iridium" = dontDistribute super."iridium";
+ "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";
+ "ismtp" = dontDistribute super."ismtp";
+ "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps";
+ "isohunt" = dontDistribute super."isohunt";
+ "ispositive" = dontDistribute super."ispositive";
+ "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-artifact" = dontDistribute super."ivory-artifact";
+ "ivory-backend-c" = dontDistribute super."ivory-backend-c";
+ "ivory-bitdata" = dontDistribute super."ivory-bitdata";
+ "ivory-eval" = dontDistribute super."ivory-eval";
+ "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-serialize" = dontDistribute super."ivory-serialize";
+ "ivory-stdlib" = dontDistribute super."ivory-stdlib";
+ "ivy-web" = dontDistribute super."ivy-web";
+ "ixdopp" = dontDistribute super."ixdopp";
+ "ixmonad" = dontDistribute super."ixmonad";
+ "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-poker" = dontDistribute super."java-poker";
+ "java-reflect" = dontDistribute super."java-reflect";
+ "javaclass" = dontDistribute super."javaclass";
+ "javasf" = dontDistribute super."javasf";
+ "javav" = dontDistribute super."javav";
+ "jcdecaux-vls" = dontDistribute super."jcdecaux-vls";
+ "jdi" = dontDistribute super."jdi";
+ "jespresso" = dontDistribute super."jespresso";
+ "jobqueue" = dontDistribute super."jobqueue";
+ "join" = dontDistribute super."join";
+ "joinlist" = dontDistribute super."joinlist";
+ "jonathanscard" = dontDistribute super."jonathanscard";
+ "jort" = dontDistribute super."jort";
+ "jose" = dontDistribute super."jose";
+ "jpeg" = dontDistribute super."jpeg";
+ "js-good-parts" = dontDistribute super."js-good-parts";
+ "jsaddle" = dontDistribute super."jsaddle";
+ "jsaddle-hello" = dontDistribute super."jsaddle-hello";
+ "jsc" = dontDistribute super."jsc";
+ "jsmw" = dontDistribute super."jsmw";
+ "json-assertions" = dontDistribute super."json-assertions";
+ "json-ast" = dontDistribute super."json-ast";
+ "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder";
+ "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck";
+ "json-b" = dontDistribute super."json-b";
+ "json-encoder" = dontDistribute super."json-encoder";
+ "json-enumerator" = dontDistribute super."json-enumerator";
+ "json-extra" = dontDistribute super."json-extra";
+ "json-fu" = dontDistribute super."json-fu";
+ "json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
+ "json-litobj" = dontDistribute super."json-litobj";
+ "json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
+ "json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
+ "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-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";
+ "juandelacosa" = dontDistribute super."juandelacosa";
+ "judy" = dontDistribute super."judy";
+ "jukebox" = dontDistribute super."jukebox";
+ "jump" = dontDistribute super."jump";
+ "jumpthefive" = dontDistribute super."jumpthefive";
+ "jvm-parser" = dontDistribute super."jvm-parser";
+ "jwt" = doDistribute super."jwt_0_6_0";
+ "kademlia" = dontDistribute super."kademlia";
+ "kafka-client" = dontDistribute super."kafka-client";
+ "kangaroo" = dontDistribute super."kangaroo";
+ "kanji" = dontDistribute super."kanji";
+ "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";
+ "katip" = dontDistribute super."katip";
+ "katip-elasticsearch" = dontDistribute super."katip-elasticsearch";
+ "katt" = dontDistribute super."katt";
+ "kazura-queue" = dontDistribute super."kazura-queue";
+ "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-reactivelenses" = dontDistribute super."keera-hails-reactivelenses";
+ "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues";
+ "keera-posture" = dontDistribute super."keera-posture";
+ "keiretsu" = dontDistribute super."keiretsu";
+ "kevin" = dontDistribute super."kevin";
+ "keycode" = doDistribute super."keycode_0_1_1";
+ "keyed" = dontDistribute super."keyed";
+ "keyring" = dontDistribute super."keyring";
+ "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-par" = dontDistribute super."kmeans-par";
+ "kmeans-vector" = dontDistribute super."kmeans-vector";
+ "knots" = dontDistribute super."knots";
+ "koellner-phonetic" = dontDistribute super."koellner-phonetic";
+ "kontrakcja-templates" = dontDistribute super."kontrakcja-templates";
+ "korfu" = dontDistribute super."korfu";
+ "kqueue" = dontDistribute super."kqueue";
+ "krpc" = dontDistribute super."krpc";
+ "ks-test" = dontDistribute super."ks-test";
+ "ktx" = dontDistribute super."ktx";
+ "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-compiler" = dontDistribute super."lambdacube-compiler";
+ "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-ir" = dontDistribute super."lambdacube-ir";
+ "lambdacube-samples" = dontDistribute super."lambdacube-samples";
+ "lambdatex" = dontDistribute super."lambdatex";
+ "lambdatwit" = dontDistribute super."lambdatwit";
+ "lambdaya-bus" = dontDistribute super."lambdaya-bus";
+ "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" = doDistribute super."language-c_0_4_7";
+ "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-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-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_14_7";
+ "language-kort" = dontDistribute super."language-kort";
+ "language-lua" = dontDistribute super."language-lua";
+ "language-lua-qq" = dontDistribute super."language-lua-qq";
+ "language-mixal" = dontDistribute super."language-mixal";
+ "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" = doDistribute super."language-thrift_0_7_0_1";
+ "language-typescript" = dontDistribute super."language-typescript";
+ "language-vhdl" = dontDistribute super."language-vhdl";
+ "language-webidl" = dontDistribute super."language-webidl";
+ "lat" = dontDistribute super."lat";
+ "latest-npm-version" = dontDistribute super."latest-npm-version";
+ "latex" = dontDistribute super."latex";
+ "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-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";
+ "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";
+ "leancheck" = dontDistribute super."leancheck";
+ "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-datetime" = dontDistribute super."lens-datetime";
+ "lens-prelude" = dontDistribute super."lens-prelude";
+ "lens-properties" = dontDistribute super."lens-properties";
+ "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";
+ "lens-utils" = dontDistribute super."lens-utils";
+ "lenses" = dontDistribute super."lenses";
+ "lensref" = dontDistribute super."lensref";
+ "lenz" = dontDistribute super."lenz";
+ "lenz-template" = dontDistribute super."lenz-template";
+ "level-monad" = dontDistribute super."level-monad";
+ "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork";
+ "levmar" = dontDistribute super."levmar";
+ "levmar-chart" = dontDistribute super."levmar-chart";
+ "lfst" = dontDistribute super."lfst";
+ "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";
+ "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";
+ "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";
+ "libravatar" = dontDistribute super."libravatar";
+ "libroman" = dontDistribute super."libroman";
+ "libssh2" = dontDistribute super."libssh2";
+ "libssh2-conduit" = dontDistribute super."libssh2-conduit";
+ "libstackexchange" = dontDistribute super."libstackexchange";
+ "libsystemd-daemon" = dontDistribute super."libsystemd-daemon";
+ "libtagc" = dontDistribute super."libtagc";
+ "libvirt-hs" = dontDistribute super."libvirt-hs";
+ "libvorbis" = dontDistribute super."libvorbis";
+ "libxls" = dontDistribute super."libxls";
+ "libxml" = dontDistribute super."libxml";
+ "libxml-enumerator" = dontDistribute super."libxml-enumerator";
+ "libxslt" = dontDistribute super."libxslt";
+ "life" = dontDistribute super."life";
+ "lift-generics" = dontDistribute super."lift-generics";
+ "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-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";
+ "link-relations" = dontDistribute super."link-relations";
+ "linkchk" = dontDistribute super."linkchk";
+ "linkcore" = dontDistribute super."linkcore";
+ "linkedhashmap" = dontDistribute super."linkedhashmap";
+ "linklater" = dontDistribute super."linklater";
+ "linode" = dontDistribute super."linode";
+ "linux-blkid" = dontDistribute super."linux-blkid";
+ "linux-cgroup" = dontDistribute super."linux-cgroup";
+ "linux-evdev" = dontDistribute super."linux-evdev";
+ "linux-inotify" = dontDistribute super."linux-inotify";
+ "linux-kmod" = dontDistribute super."linux-kmod";
+ "linux-mount" = dontDistribute super."linux-mount";
+ "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";
+ "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal";
+ "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo";
+ "lispparser" = dontDistribute super."lispparser";
+ "list-extras" = dontDistribute super."list-extras";
+ "list-grouping" = dontDistribute super."list-grouping";
+ "list-mux" = dontDistribute super."list-mux";
+ "list-remote-forwards" = dontDistribute super."list-remote-forwards";
+ "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";
+ "list-zip-def" = dontDistribute super."list-zip-def";
+ "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";
+ "lmonad" = dontDistribute super."lmonad";
+ "lmonad-yesod" = dontDistribute super."lmonad-yesod";
+ "loadavg" = dontDistribute super."loadavg";
+ "local-address" = dontDistribute super."local-address";
+ "local-search" = dontDistribute super."local-search";
+ "located" = dontDistribute super."located";
+ "located-base" = dontDistribute super."located-base";
+ "locators" = dontDistribute super."locators";
+ "loch" = dontDistribute super."loch";
+ "lock-file" = dontDistribute super."lock-file";
+ "locked-poll" = dontDistribute super."locked-poll";
+ "lockfree-queue" = dontDistribute super."lockfree-queue";
+ "log" = dontDistribute super."log";
+ "log-effect" = dontDistribute super."log-effect";
+ "log2json" = dontDistribute super."log2json";
+ "logfloat" = dontDistribute super."logfloat";
+ "logger" = dontDistribute super."logger";
+ "logging" = dontDistribute super."logging";
+ "logging-effect" = dontDistribute super."logging-effect";
+ "logging-facade-journald" = dontDistribute super."logging-facade-journald";
+ "logic-TPTP" = dontDistribute super."logic-TPTP";
+ "logic-classes" = dontDistribute super."logic-classes";
+ "logicst" = dontDistribute super."logicst";
+ "logict-state" = dontDistribute super."logict-state";
+ "logplex-parse" = dontDistribute super."logplex-parse";
+ "logsink" = dontDistribute super."logsink";
+ "lojban" = dontDistribute super."lojban";
+ "lojbanParser" = dontDistribute super."lojbanParser";
+ "lojbanXiragan" = dontDistribute super."lojbanXiragan";
+ "lojysamban" = dontDistribute super."lojysamban";
+ "lol" = dontDistribute super."lol";
+ "lol-apps" = dontDistribute super."lol-apps";
+ "loli" = dontDistribute super."loli";
+ "lookup-tables" = dontDistribute super."lookup-tables";
+ "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";
+ "lp-diagrams" = dontDistribute super."lp-diagrams";
+ "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg";
+ "ls-usb" = dontDistribute super."ls-usb";
+ "lscabal" = dontDistribute super."lscabal";
+ "lss" = dontDistribute super."lss";
+ "lsystem" = dontDistribute super."lsystem";
+ "ltk" = dontDistribute super."ltk";
+ "ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
+ "lua-bytecode" = dontDistribute super."lua-bytecode";
+ "luachunk" = dontDistribute super."luachunk";
+ "luautils" = dontDistribute super."luautils";
+ "lub" = dontDistribute super."lub";
+ "lucid-foundation" = dontDistribute super."lucid-foundation";
+ "lucienne" = dontDistribute super."lucienne";
+ "luhn" = dontDistribute super."luhn";
+ "lui" = dontDistribute super."lui";
+ "luis-client" = dontDistribute super."luis-client";
+ "luka" = dontDistribute super."luka";
+ "luminance" = doDistribute super."luminance_0_9_1_2";
+ "luminance-samples" = doDistribute super."luminance-samples_0_9_1";
+ "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-enumerator" = dontDistribute super."lzma-enumerator";
+ "lzma-streams" = dontDistribute super."lzma-streams";
+ "maam" = dontDistribute super."maam";
+ "mac" = dontDistribute super."mac";
+ "macbeth-lib" = dontDistribute super."macbeth-lib";
+ "maccatcher" = dontDistribute super."maccatcher";
+ "machinecell" = dontDistribute super."machinecell";
+ "machines-binary" = dontDistribute super."machines-binary";
+ "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";
+ "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" = doDistribute super."managed_1_0_3";
+ "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";
+ "mandulia" = dontDistribute super."mandulia";
+ "manifold-random" = dontDistribute super."manifold-random";
+ "manifolds" = dontDistribute super."manifolds";
+ "map-exts" = dontDistribute super."map-exts";
+ "mappy" = dontDistribute super."mappy";
+ "marionetta" = dontDistribute super."marionetta";
+ "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-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";
+ "matcher" = dontDistribute super."matcher";
+ "matchers" = dontDistribute super."matchers";
+ "mathblog" = dontDistribute super."mathblog";
+ "mathgenealogy" = dontDistribute super."mathgenealogy";
+ "mathista" = dontDistribute super."mathista";
+ "mathlink" = dontDistribute super."mathlink";
+ "matlab" = dontDistribute super."matlab";
+ "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";
+ "maxsharing" = dontDistribute super."maxsharing";
+ "maybe-justify" = dontDistribute super."maybe-justify";
+ "maybench" = dontDistribute super."maybench";
+ "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";
+ "mdapi" = dontDistribute super."mdapi";
+ "mdcat" = dontDistribute super."mdcat";
+ "mdo" = dontDistribute super."mdo";
+ "mdp" = dontDistribute super."mdp";
+ "mecab" = dontDistribute super."mecab";
+ "mecha" = dontDistribute super."mecha";
+ "mediawiki" = dontDistribute super."mediawiki";
+ "mediawiki2latex" = dontDistribute super."mediawiki2latex";
+ "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell";
+ "meep" = dontDistribute super."meep";
+ "mega-sdist" = dontDistribute super."mega-sdist";
+ "megaparsec" = doDistribute super."megaparsec_4_3_0";
+ "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";
+ "memexml" = dontDistribute super."memexml";
+ "memo-ptr" = dontDistribute super."memo-ptr";
+ "memo-sqlite" = dontDistribute super."memo-sqlite";
+ "memory" = doDistribute super."memory_0_11";
+ "memscript" = dontDistribute super."memscript";
+ "mersenne-random" = dontDistribute super."mersenne-random";
+ "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";
+ "metricsd-client" = dontDistribute super."metricsd-client";
+ "metronome" = dontDistribute super."metronome";
+ "mezzolens" = dontDistribute super."mezzolens";
+ "mfsolve" = dontDistribute super."mfsolve";
+ "mgeneric" = dontDistribute super."mgeneric";
+ "mi" = dontDistribute super."mi";
+ "microbench" = dontDistribute super."microbench";
+ "microformats2-types" = dontDistribute super."microformats2-types";
+ "microlens" = doDistribute super."microlens_0_4_2_1";
+ "microlens-each" = dontDistribute super."microlens-each";
+ "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1";
+ "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1";
+ "microlens-th" = doDistribute super."microlens-th_0_3_0_2";
+ "microtimer" = dontDistribute super."microtimer";
+ "mida" = dontDistribute super."mida";
+ "midair" = dontDistribute super."midair";
+ "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-string" = dontDistribute super."mime-string";
+ "mines" = dontDistribute super."mines";
+ "minesweeper" = dontDistribute super."minesweeper";
+ "miniball" = dontDistribute super."miniball";
+ "miniforth" = dontDistribute super."miniforth";
+ "minilens" = dontDistribute super."minilens";
+ "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";
+ "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";
+ "mnist-idx" = dontDistribute super."mnist-idx";
+ "moan" = dontDistribute super."moan";
+ "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";
+ "mohws" = dontDistribute super."mohws";
+ "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-connect" = dontDistribute super."monad-connect";
+ "monad-dijkstra" = dontDistribute super."monad-dijkstra";
+ "monad-exception" = dontDistribute super."monad-exception";
+ "monad-fork" = dontDistribute super."monad-fork";
+ "monad-gen" = dontDistribute super."monad-gen";
+ "monad-hash" = dontDistribute super."monad-hash";
+ "monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
+ "monad-levels" = dontDistribute super."monad-levels";
+ "monad-log" = dontDistribute super."monad-log";
+ "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-ran" = dontDistribute super."monad-ran";
+ "monad-resumption" = dontDistribute super."monad-resumption";
+ "monad-state" = dontDistribute super."monad-state";
+ "monad-statevar" = dontDistribute super."monad-statevar";
+ "monad-ste" = dontDistribute super."monad-ste";
+ "monad-stlike-io" = dontDistribute super."monad-stlike-io";
+ "monad-stlike-stm" = dontDistribute super."monad-stlike-stm";
+ "monad-supply" = dontDistribute super."monad-supply";
+ "monad-task" = dontDistribute super."monad-task";
+ "monad-time" = doDistribute super."monad-time_0_1";
+ "monad-tx" = dontDistribute super."monad-tx";
+ "monad-unify" = dontDistribute super."monad-unify";
+ "monad-unlift" = doDistribute super."monad-unlift_0_1_2_0";
+ "monad-unlift-ref" = dontDistribute super."monad-unlift-ref";
+ "monad-wrap" = dontDistribute super."monad-wrap";
+ "monadIO" = dontDistribute super."monadIO";
+ "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-pp" = dontDistribute super."monadloc-pp";
+ "monadplus" = dontDistribute super."monadplus";
+ "monads-fd" = dontDistribute super."monads-fd";
+ "monadtransform" = dontDistribute super."monadtransform";
+ "monarch" = dontDistribute super."monarch";
+ "mondo" = dontDistribute super."mondo";
+ "mongodb-queue" = dontDistribute super."mongodb-queue";
+ "mongrel2-handler" = dontDistribute super."mongrel2-handler";
+ "monitor" = dontDistribute super."monitor";
+ "mono-foldable" = dontDistribute super."mono-foldable";
+ "monoid-absorbing" = dontDistribute super."monoid-absorbing";
+ "monoid-owns" = dontDistribute super."monoid-owns";
+ "monoid-record" = dontDistribute super."monoid-record";
+ "monoid-statistics" = dontDistribute super."monoid-statistics";
+ "monoid-transformer" = dontDistribute super."monoid-transformer";
+ "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" = doDistribute super."morte_1_4_2";
+ "mosaico-lib" = dontDistribute super."mosaico-lib";
+ "mount" = dontDistribute super."mount";
+ "mountpoints" = dontDistribute super."mountpoints";
+ "mp" = dontDistribute super."mp";
+ "mp3decoder" = dontDistribute super."mp3decoder";
+ "mpdmate" = dontDistribute super."mpdmate";
+ "mpppc" = dontDistribute super."mpppc";
+ "mpretty" = dontDistribute super."mpretty";
+ "mpris" = dontDistribute super."mpris";
+ "mprover" = dontDistribute super."mprover";
+ "mps" = dontDistribute super."mps";
+ "mpvguihs" = dontDistribute super."mpvguihs";
+ "mqtt-hs" = dontDistribute super."mqtt-hs";
+ "mrm" = dontDistribute super."mrm";
+ "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";
+ "msh" = dontDistribute super."msh";
+ "msu" = dontDistribute super."msu";
+ "mtgoxapi" = dontDistribute super."mtgoxapi";
+ "mtl-c" = dontDistribute super."mtl-c";
+ "mtl-evil-instances" = dontDistribute super."mtl-evil-instances";
+ "mtl-tf" = dontDistribute super."mtl-tf";
+ "mtl-unleashed" = dontDistribute super."mtl-unleashed";
+ "mtlparse" = dontDistribute super."mtlparse";
+ "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";
+ "mulang" = dontDistribute super."mulang";
+ "multext-east-msd" = dontDistribute super."multext-east-msd";
+ "multi-cabal" = dontDistribute super."multi-cabal";
+ "multiaddr" = dontDistribute super."multiaddr";
+ "multifocal" = dontDistribute super."multifocal";
+ "multihash" = dontDistribute super."multihash";
+ "multipart-names" = dontDistribute super."multipart-names";
+ "multipass" = dontDistribute super."multipass";
+ "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-comb" = dontDistribute super."multiset-comb";
+ "multisetrewrite" = dontDistribute super."multisetrewrite";
+ "multistate" = dontDistribute super."multistate";
+ "muon" = dontDistribute super."muon";
+ "murder" = dontDistribute super."murder";
+ "murmur" = dontDistribute super."murmur";
+ "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-haskell" = dontDistribute super."mustache-haskell";
+ "mustache2hs" = dontDistribute super."mustache2hs";
+ "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-probability" = doDistribute super."mwc-probability_1_0_3";
+ "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-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-erl" = dontDistribute super."nano-erl";
+ "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";
+ "nanovg" = dontDistribute super."nanovg";
+ "nanq" = dontDistribute super."nanq";
+ "narc" = dontDistribute super."narc";
+ "nat" = dontDistribute super."nat";
+ "native" = dontDistribute super."native";
+ "nats-queue" = dontDistribute super."nats-queue";
+ "natural-number" = dontDistribute super."natural-number";
+ "natural-numbers" = dontDistribute super."natural-numbers";
+ "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";
+ "neat" = dontDistribute super."neat";
+ "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-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-address" = dontDistribute super."network-address";
+ "network-api-support" = dontDistribute super."network-api-support";
+ "network-bitcoin" = dontDistribute super."network-bitcoin";
+ "network-builder" = dontDistribute super."network-builder";
+ "network-bytestring" = dontDistribute super."network-bytestring";
+ "network-conduit" = dontDistribute super."network-conduit";
+ "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-hans" = dontDistribute super."network-hans";
+ "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-netpacket" = dontDistribute super."network-netpacket";
+ "network-pgi" = dontDistribute super."network-pgi";
+ "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-amqp" = dontDistribute super."network-transport-amqp";
+ "network-transport-inmemory" = dontDistribute super."network-transport-inmemory";
+ "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2";
+ "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-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";
+ "ngx-export" = dontDistribute super."ngx-export";
+ "niagra" = dontDistribute super."niagra";
+ "nibblestring" = dontDistribute super."nibblestring";
+ "nicify" = dontDistribute super."nicify";
+ "nicovideo-translator" = dontDistribute super."nicovideo-translator";
+ "nikepub" = dontDistribute super."nikepub";
+ "nimber" = dontDistribute super."nimber";
+ "nist-beacon" = dontDistribute super."nist-beacon";
+ "nitro" = dontDistribute super."nitro";
+ "nix-eval" = dontDistribute super."nix-eval";
+ "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-buffering-workaround" = dontDistribute super."no-buffering-workaround";
+ "no-role-annots" = dontDistribute super."no-role-annots";
+ "nofib-analyse" = dontDistribute super."nofib-analyse";
+ "nofib-analyze" = dontDistribute super."nofib-analyze";
+ "noise" = dontDistribute super."noise";
+ "non-empty" = dontDistribute super."non-empty";
+ "non-negative" = dontDistribute super."non-negative";
+ "nondeterminism" = dontDistribute super."nondeterminism";
+ "nonempty-alternative" = dontDistribute super."nonempty-alternative";
+ "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";
+ "nth-prime" = dontDistribute super."nth-prime";
+ "nthable" = dontDistribute super."nthable";
+ "ntp-control" = dontDistribute super."ntp-control";
+ "null-canvas" = dontDistribute super."null-canvas";
+ "nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
+ "number" = dontDistribute super."number";
+ "number-length" = dontDistribute super."number-length";
+ "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-ranges" = dontDistribute super."numeric-ranges";
+ "numeric-tools" = dontDistribute super."numeric-tools";
+ "numericpeano" = dontDistribute super."numericpeano";
+ "nums" = dontDistribute super."nums";
+ "numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
+ "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";
+ "oanda-rest-api" = dontDistribute super."oanda-rest-api";
+ "oauthenticated" = dontDistribute super."oauthenticated";
+ "obdd" = dontDistribute super."obdd";
+ "oberon0" = dontDistribute super."oberon0";
+ "obj" = dontDistribute super."obj";
+ "objectid" = dontDistribute super."objectid";
+ "objective" = doDistribute super."objective_1_0_5";
+ "observable-sharing" = dontDistribute super."observable-sharing";
+ "octane" = dontDistribute super."octane";
+ "octohat" = dontDistribute super."octohat";
+ "octopus" = dontDistribute super."octopus";
+ "oculus" = dontDistribute super."oculus";
+ "oden-go-packages" = dontDistribute super."oden-go-packages";
+ "oeis" = dontDistribute super."oeis";
+ "off-simple" = dontDistribute super."off-simple";
+ "ohloh-hs" = dontDistribute super."ohloh-hs";
+ "oi" = dontDistribute super."oi";
+ "oidc-client" = dontDistribute super."oidc-client";
+ "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";
+ "opaleye-classy" = dontDistribute super."opaleye-classy";
+ "opaleye-sqlite" = dontDistribute super."opaleye-sqlite";
+ "opaleye-trans" = dontDistribute super."opaleye-trans";
+ "open-haddock" = dontDistribute super."open-haddock";
+ "open-pandoc" = dontDistribute super."open-pandoc";
+ "open-signals" = dontDistribute super."open-signals";
+ "open-symbology" = dontDistribute super."open-symbology";
+ "open-typerep" = dontDistribute super."open-typerep";
+ "open-union" = dontDistribute super."open-union";
+ "open-witness" = dontDistribute super."open-witness";
+ "opencog-atomspace" = dontDistribute super."opencog-atomspace";
+ "opencv-raw" = dontDistribute super."opencv-raw";
+ "opendatatable" = dontDistribute super."opendatatable";
+ "openexchangerates" = dontDistribute super."openexchangerates";
+ "openflow" = dontDistribute super."openflow";
+ "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
+ "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator";
+ "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";
+ "opensource" = dontDistribute super."opensource";
+ "openssh-github-keys" = dontDistribute super."openssh-github-keys";
+ "openssl-createkey" = dontDistribute super."openssl-createkey";
+ "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-alacarte" = dontDistribute super."operational-alacarte";
+ "operational-extra" = dontDistribute super."operational-extra";
+ "opml" = dontDistribute super."opml";
+ "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1";
+ "opn" = dontDistribute super."opn";
+ "optimal-blocks" = dontDistribute super."optimal-blocks";
+ "optimization" = dontDistribute super."optimization";
+ "optimusprime" = dontDistribute super."optimusprime";
+ "option" = dontDistribute super."option";
+ "optional" = dontDistribute super."optional";
+ "options-time" = dontDistribute super."options-time";
+ "optparse-declarative" = dontDistribute super."optparse-declarative";
+ "optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
+ "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-statistic-tree" = dontDistribute super."order-statistic-tree";
+ "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";
+ "oscpacking" = dontDistribute super."oscpacking";
+ "osm-conduit" = dontDistribute super."osm-conduit";
+ "osm-download" = dontDistribute super."osm-download";
+ "oso2pdf" = dontDistribute super."oso2pdf";
+ "osx-ar" = dontDistribute super."osx-ar";
+ "ot" = dontDistribute super."ot";
+ "ottparse-pretty" = dontDistribute super."ottparse-pretty";
+ "overloaded-records" = dontDistribute super."overloaded-records";
+ "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";
+ "packman" = dontDistribute super."packman";
+ "packunused" = dontDistribute super."packunused";
+ "pacman-memcache" = dontDistribute super."pacman-memcache";
+ "padKONTROL" = dontDistribute super."padKONTROL";
+ "pagarme" = dontDistribute super."pagarme";
+ "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver";
+ "palindromes" = dontDistribute super."palindromes";
+ "pam" = dontDistribute super."pam";
+ "panda" = dontDistribute super."panda";
+ "pandoc" = doDistribute super."pandoc_1_16_0_2";
+ "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble";
+ "pandoc-crossref" = dontDistribute super."pandoc-crossref";
+ "pandoc-csv2table" = dontDistribute super."pandoc-csv2table";
+ "pandoc-include" = dontDistribute super."pandoc-include";
+ "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters";
+ "pandoc-lens" = dontDistribute super."pandoc-lens";
+ "pandoc-placetable" = dontDistribute super."pandoc-placetable";
+ "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams";
+ "pandoc-unlit" = dontDistribute super."pandoc-unlit";
+ "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";
+ "paranoia" = dontDistribute super."paranoia";
+ "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-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-trace" = dontDistribute super."parsec-trace";
+ "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";
+ "parsek" = dontDistribute super."parsek";
+ "parsely" = dontDistribute super."parsely";
+ "parser-helper" = dontDistribute super."parser-helper";
+ "parser241" = dontDistribute super."parser241";
+ "parsergen" = dontDistribute super."parsergen";
+ "parsestar" = dontDistribute super."parsestar";
+ "parsimony" = dontDistribute super."parsimony";
+ "partage" = dontDistribute super."partage";
+ "partial" = dontDistribute super."partial";
+ "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-io" = doDistribute super."path-io_0_2_0";
+ "pathfinding" = dontDistribute super."pathfinding";
+ "pathfindingcore" = dontDistribute super."pathfindingcore";
+ "pathtype" = dontDistribute super."pathtype";
+ "patronscraper" = dontDistribute super."patronscraper";
+ "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-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-less" = dontDistribute super."pcre-less";
+ "pcre-light-extra" = dontDistribute super."pcre-light-extra";
+ "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer";
+ "pdf2line" = dontDistribute super."pdf2line";
+ "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";
+ "perfecthash" = dontDistribute super."perfecthash";
+ "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";
+ "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
+ "persistent-audit" = dontDistribute super."persistent-audit";
+ "persistent-cereal" = dontDistribute super."persistent-cereal";
+ "persistent-database-url" = dontDistribute super."persistent-database-url";
+ "persistent-equivalence" = dontDistribute super."persistent-equivalence";
+ "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
+ "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
+ "persistent-iproute" = dontDistribute super."persistent-iproute";
+ "persistent-map" = dontDistribute super."persistent-map";
+ "persistent-odbc" = dontDistribute super."persistent-odbc";
+ "persistent-protobuf" = dontDistribute super."persistent-protobuf";
+ "persistent-ratelimit" = dontDistribute super."persistent-ratelimit";
+ "persistent-redis" = dontDistribute super."persistent-redis";
+ "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";
+ "pg-store" = dontDistribute super."pg-store";
+ "pgdl" = dontDistribute super."pgdl";
+ "pgm" = dontDistribute super."pgm";
+ "pgsql-simple" = dontDistribute super."pgsql-simple";
+ "pgstream" = dontDistribute super."pgstream";
+ "phasechange" = dontDistribute super."phasechange";
+ "phizzle" = dontDistribute super."phizzle";
+ "phoityne" = dontDistribute super."phoityne";
+ "phoityne-vscode" = dontDistribute super."phoityne-vscode";
+ "phone-numbers" = dontDistribute super."phone-numbers";
+ "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";
+ "picosat" = dontDistribute super."picosat";
+ "piet" = dontDistribute super."piet";
+ "piki" = dontDistribute super."piki";
+ "pinboard" = dontDistribute super."pinboard";
+ "pinchot" = doDistribute super."pinchot_0_6_0_0";
+ "pipe-enumerator" = dontDistribute super."pipe-enumerator";
+ "pipeclip" = dontDistribute super."pipeclip";
+ "pipes-async" = dontDistribute super."pipes-async";
+ "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
+ "pipes-bzip" = dontDistribute super."pipes-bzip";
+ "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3";
+ "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-conduit" = dontDistribute super."pipes-conduit";
+ "pipes-core" = dontDistribute super."pipes-core";
+ "pipes-courier" = dontDistribute super."pipes-courier";
+ "pipes-errors" = dontDistribute super."pipes-errors";
+ "pipes-extra" = dontDistribute super."pipes-extra";
+ "pipes-files" = dontDistribute super."pipes-files";
+ "pipes-interleave" = dontDistribute super."pipes-interleave";
+ "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv";
+ "pipes-network-tls" = dontDistribute super."pipes-network-tls";
+ "pipes-p2p" = dontDistribute super."pipes-p2p";
+ "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples";
+ "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple";
+ "pipes-rt" = dontDistribute super."pipes-rt";
+ "pipes-shell" = dontDistribute super."pipes-shell";
+ "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple";
+ "pipes-transduce" = dontDistribute super."pipes-transduce";
+ "pipes-vector" = dontDistribute super."pipes-vector";
+ "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";
+ "pitchtrack" = dontDistribute super."pitchtrack";
+ "pivotal-tracker" = dontDistribute super."pivotal-tracker";
+ "pkcs1" = dontDistribute super."pkcs1";
+ "pkcs7" = dontDistribute super."pkcs7";
+ "pkggraph" = dontDistribute super."pkggraph";
+ "pktree" = dontDistribute super."pktree";
+ "plailude" = dontDistribute super."plailude";
+ "plan-b" = dontDistribute super."plan-b";
+ "planar-graph" = dontDistribute super."planar-graph";
+ "plat" = dontDistribute super."plat";
+ "playlists" = dontDistribute super."playlists";
+ "plist" = dontDistribute super."plist";
+ "plist-buddy" = dontDistribute super."plist-buddy";
+ "plivo" = dontDistribute super."plivo";
+ "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";
+ "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-configfile" = dontDistribute super."polar-configfile";
+ "polar-shader" = dontDistribute super."polar-shader";
+ "polh-lexicon" = dontDistribute super."polh-lexicon";
+ "polimorf" = dontDistribute super."polimorf";
+ "poll" = dontDistribute super."poll";
+ "poly-control" = dontDistribute super."poly-control";
+ "polyToMonoid" = dontDistribute super."polyToMonoid";
+ "polymap" = dontDistribute super."polymap";
+ "polynom" = dontDistribute super."polynom";
+ "polynomial" = dontDistribute super."polynomial";
+ "polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
+ "polyseq" = dontDistribute super."polyseq";
+ "polysoup" = dontDistribute super."polysoup";
+ "polytypeable" = dontDistribute super."polytypeable";
+ "polytypeable-utils" = dontDistribute super."polytypeable-utils";
+ "ponder" = dontDistribute super."ponder";
+ "pong-server" = dontDistribute super."pong-server";
+ "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";
+ "pool-conduit" = dontDistribute super."pool-conduit";
+ "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-timer" = dontDistribute super."posix-timer";
+ "posix-waitpid" = dontDistribute super."posix-waitpid";
+ "possible" = dontDistribute super."possible";
+ "postcodes" = dontDistribute super."postcodes";
+ "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9";
+ "postgresql-config" = dontDistribute super."postgresql-config";
+ "postgresql-connector" = dontDistribute super."postgresql-connector";
+ "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape";
+ "postgresql-cube" = dontDistribute super."postgresql-cube";
+ "postgresql-error-codes" = dontDistribute super."postgresql-error-codes";
+ "postgresql-query" = dontDistribute super."postgresql-query";
+ "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-transactional" = dontDistribute super."postgresql-transactional";
+ "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-mtl" = dontDistribute super."pqueue-mtl";
+ "practice-room" = dontDistribute super."practice-room";
+ "precis" = dontDistribute super."precis";
+ "predicates" = dontDistribute super."predicates";
+ "prednote-test" = dontDistribute super."prednote-test";
+ "prefork" = dontDistribute super."prefork";
+ "pregame" = dontDistribute super."pregame";
+ "prelude-compat" = dontDistribute super."prelude-compat";
+ "prelude-edsl" = dontDistribute super."prelude-edsl";
+ "prelude-generalize" = dontDistribute super."prelude-generalize";
+ "prelude-plus" = dontDistribute super."prelude-plus";
+ "prelude-prime" = dontDistribute super."prelude-prime";
+ "prelude-safeenum" = dontDistribute super."prelude-safeenum";
+ "prelude2010" = dontDistribute super."prelude2010";
+ "preprocess-haskell" = dontDistribute super."preprocess-haskell";
+ "preprocessor-tools" = dontDistribute super."preprocessor-tools";
+ "present" = dontDistribute super."present";
+ "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-ncols" = dontDistribute super."pretty-ncols";
+ "pretty-sop" = dontDistribute super."pretty-sop";
+ "pretty-tree" = dontDistribute super."pretty-tree";
+ "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
+ "prim-spoon" = dontDistribute super."prim-spoon";
+ "prim-uniq" = dontDistribute super."prim-uniq";
+ "primitive-simd" = dontDistribute super."primitive-simd";
+ "primula-board" = dontDistribute super."primula-board";
+ "primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
+ "print-debugger" = dontDistribute super."print-debugger";
+ "printf-mauke" = dontDistribute super."printf-mauke";
+ "printf-safe" = dontDistribute super."printf-safe";
+ "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-conduit" = dontDistribute super."process-conduit";
+ "process-extras" = doDistribute super."process-extras_0_3_3_7";
+ "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_3_1";
+ "prof2dot" = dontDistribute super."prof2dot";
+ "prof2pretty" = dontDistribute super."prof2pretty";
+ "profiteur" = dontDistribute super."profiteur";
+ "progress" = dontDistribute super."progress";
+ "progressbar" = dontDistribute super."progressbar";
+ "progression" = dontDistribute super."progression";
+ "progressive" = dontDistribute super."progressive";
+ "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings";
+ "projection" = dontDistribute super."projection";
+ "prolog" = dontDistribute super."prolog";
+ "prolog-graph" = dontDistribute super."prolog-graph";
+ "prolog-graph-lib" = dontDistribute super."prolog-graph-lib";
+ "prologue" = dontDistribute super."prologue";
+ "prometheus" = dontDistribute super."prometheus";
+ "promise" = dontDistribute super."promise";
+ "promises" = dontDistribute super."promises";
+ "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-native" = dontDistribute super."protobuf-native";
+ "protobuf-simple" = dontDistribute super."protobuf-simple";
+ "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12";
+ "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12";
+ "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork";
+ "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork";
+ "protolude" = dontDistribute super."protolude";
+ "proton-haskell" = dontDistribute super."proton-haskell";
+ "prototype" = dontDistribute super."prototype";
+ "prove-everywhere-server" = dontDistribute super."prove-everywhere-server";
+ "proxied" = dontDistribute super."proxied";
+ "proxy-kindness" = dontDistribute super."proxy-kindness";
+ "psc-ide" = doDistribute super."psc-ide_0_5_0";
+ "pseudo-boolean" = dontDistribute super."pseudo-boolean";
+ "pseudo-trie" = dontDistribute super."pseudo-trie";
+ "pseudomacros" = dontDistribute super."pseudomacros";
+ "psql-helpers" = dontDistribute super."psql-helpers";
+ "pub" = dontDistribute super."pub";
+ "publicsuffix" = doDistribute super."publicsuffix_0_20151212";
+ "publicsuffixlist" = dontDistribute super."publicsuffixlist";
+ "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";
+ "punycode" = dontDistribute super."punycode";
+ "puppetresources" = dontDistribute super."puppetresources";
+ "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" = doDistribute super."purescript_0_7_6_1";
+ "purescript-bridge" = dontDistribute super."purescript-bridge";
+ "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
+ "pursuit-client" = dontDistribute super."pursuit-client";
+ "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";
+ "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";
+ "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";
+ "qed" = dontDistribute super."qed";
+ "qhull-simple" = dontDistribute super."qhull-simple";
+ "qrcode" = dontDistribute super."qrcode";
+ "qt" = dontDistribute super."qt";
+ "quadratic-irrational" = dontDistribute super."quadratic-irrational";
+ "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";
+ "queue" = dontDistribute super."queue";
+ "queuelike" = dontDistribute super."queuelike";
+ "quick-generator" = dontDistribute super."quick-generator";
+ "quick-schema" = dontDistribute super."quick-schema";
+ "quickcheck-combinators" = dontDistribute super."quickcheck-combinators";
+ "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-webdriver" = dontDistribute super."quickcheck-webdriver";
+ "quicklz" = dontDistribute super."quicklz";
+ "quickpull" = dontDistribute super."quickpull";
+ "quickset" = dontDistribute super."quickset";
+ "quickspec" = dontDistribute super."quickspec";
+ "quickterm" = dontDistribute super."quickterm";
+ "quicktest" = dontDistribute super."quicktest";
+ "quickwebapp" = dontDistribute super."quickwebapp";
+ "quiver" = dontDistribute super."quiver";
+ "quiver-binary" = dontDistribute super."quiver-binary";
+ "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-groups" = dontDistribute super."quiver-groups";
+ "quiver-http" = dontDistribute super."quiver-http";
+ "quiver-instances" = dontDistribute super."quiver-instances";
+ "quiver-interleave" = dontDistribute super."quiver-interleave";
+ "quiver-sort" = dontDistribute super."quiver-sort";
+ "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_26_0_6";
+ "rainbow-tests" = dontDistribute super."rainbow-tests";
+ "rainbox" = doDistribute super."rainbox_0_18_0_4";
+ "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-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";
+ "random-tree" = dontDistribute super."random-tree";
+ "random-variates" = dontDistribute super."random-variates";
+ "randomgen" = dontDistribute super."randomgen";
+ "randproc" = dontDistribute super."randproc";
+ "randsolid" = dontDistribute super."randsolid";
+ "range-space" = dontDistribute super."range-space";
+ "rangemin" = dontDistribute super."rangemin";
+ "ranges" = dontDistribute super."ranges";
+ "rascal" = dontDistribute super."rascal";
+ "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2";
+ "rate-limit" = dontDistribute super."rate-limit";
+ "ratel" = dontDistribute super."ratel";
+ "ratel-wai" = dontDistribute super."ratel-wai";
+ "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";
+ "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server";
+ "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-sdl2" = dontDistribute super."reactive-banana-sdl2";
+ "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";
+ "reactivity" = dontDistribute super."reactivity";
+ "reactor" = dontDistribute super."reactor";
+ "read-bounded" = dontDistribute super."read-bounded";
+ "read-env-var" = dontDistribute super."read-env-var";
+ "readline-statevar" = dontDistribute super."readline-statevar";
+ "readpyc" = dontDistribute super."readpyc";
+ "readshp" = dontDistribute super."readshp";
+ "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser";
+ "reasonable-lens" = dontDistribute super."reasonable-lens";
+ "reasonable-operational" = dontDistribute super."reasonable-operational";
+ "rebase" = dontDistribute super."rebase";
+ "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";
+ "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" = doDistribute super."redis-io_0_5_2";
+ "redis-job-queue" = dontDistribute super."redis-job-queue";
+ "redis-resp" = doDistribute super."redis-resp_0_3_2";
+ "redis-simple" = dontDistribute super."redis-simple";
+ "redo" = dontDistribute super."redo";
+ "reedsolomon" = dontDistribute super."reedsolomon";
+ "reenact" = dontDistribute super."reenact";
+ "reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
+ "ref" = dontDistribute super."ref";
+ "ref-mtl" = dontDistribute super."ref-mtl";
+ "ref-tf" = dontDistribute super."ref-tf";
+ "refcount" = dontDistribute super."refcount";
+ "reference" = dontDistribute super."reference";
+ "references" = dontDistribute super."references";
+ "refh" = dontDistribute super."refh";
+ "refined" = dontDistribute super."refined";
+ "reflection-extras" = dontDistribute super."reflection-extras";
+ "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
+ "reflex" = dontDistribute super."reflex";
+ "reflex-animation" = dontDistribute super."reflex-animation";
+ "reflex-dom" = dontDistribute super."reflex-dom";
+ "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
+ "reflex-gloss" = dontDistribute super."reflex-gloss";
+ "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
+ "reflex-orphans" = dontDistribute super."reflex-orphans";
+ "reflex-transformers" = dontDistribute super."reflex-transformers";
+ "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-pderiv" = dontDistribute super."regex-pderiv";
+ "regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
+ "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
+ "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
+ "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
+ "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8";
+ "regex-tre" = dontDistribute super."regex-tre";
+ "regex-type" = dontDistribute super."regex-type";
+ "regex-xmlschema" = dontDistribute super."regex-xmlschema";
+ "regexchar" = dontDistribute super."regexchar";
+ "regexdot" = dontDistribute super."regexdot";
+ "regexp-tries" = dontDistribute super."regexp-tries";
+ "regexpr" = dontDistribute super."regexpr";
+ "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";
+ "register-machine-typelevel" = dontDistribute super."register-machine-typelevel";
+ "regress" = dontDistribute super."regress";
+ "regular" = dontDistribute super."regular";
+ "regular-extras" = dontDistribute super."regular-extras";
+ "regular-web" = dontDistribute super."regular-web";
+ "regular-xmlpickler" = dontDistribute super."regular-xmlpickler";
+ "reheat" = dontDistribute super."reheat";
+ "rehoo" = dontDistribute super."rehoo";
+ "rei" = dontDistribute super."rei";
+ "reified-records" = dontDistribute super."reified-records";
+ "reify" = dontDistribute super."reify";
+ "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";
+ "remote-json" = dontDistribute super."remote-json";
+ "remote-json-client" = dontDistribute super."remote-json-client";
+ "remote-json-server" = dontDistribute super."remote-json-server";
+ "remote-monad" = dontDistribute super."remote-monad";
+ "remotion" = dontDistribute super."remotion";
+ "renderable" = dontDistribute super."renderable";
+ "reord" = dontDistribute super."reord";
+ "reorderable" = dontDistribute super."reorderable";
+ "repa-array" = dontDistribute super."repa-array";
+ "repa-bytestring" = dontDistribute super."repa-bytestring";
+ "repa-convert" = dontDistribute super."repa-convert";
+ "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-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";
+ "reqcatcher" = dontDistribute super."reqcatcher";
+ "request-monad" = dontDistribute super."request-monad";
+ "reserve" = dontDistribute super."reserve";
+ "resistor-cube" = dontDistribute super."resistor-cube";
+ "resource-effect" = dontDistribute super."resource-effect";
+ "resource-embed" = dontDistribute super."resource-embed";
+ "resource-pool-catchio" = dontDistribute super."resource-pool-catchio";
+ "resource-pool-monad" = dontDistribute super."resource-pool-monad";
+ "resource-simple" = dontDistribute super."resource-simple";
+ "respond" = dontDistribute super."respond";
+ "rest-core" = doDistribute super."rest-core_0_37";
+ "rest-example" = dontDistribute super."rest-example";
+ "rest-gen" = doDistribute super."rest-gen_0_19_0_1";
+ "restful-snap" = dontDistribute super."restful-snap";
+ "restricted-workers" = dontDistribute super."restricted-workers";
+ "restyle" = dontDistribute super."restyle";
+ "resumable-exceptions" = dontDistribute super."resumable-exceptions";
+ "rethinkdb-model" = dontDistribute super."rethinkdb-model";
+ "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster";
+ "retryer" = dontDistribute super."retryer";
+ "revdectime" = dontDistribute super."revdectime";
+ "reverse-apply" = dontDistribute super."reverse-apply";
+ "reverse-arguments" = dontDistribute super."reverse-arguments";
+ "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" = doDistribute super."riak_0_9_1_1";
+ "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0";
+ "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";
+ "rlist" = dontDistribute super."rlist";
+ "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-trie" = dontDistribute super."rose-trie";
+ "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";
+ "rss-conduit" = dontDistribute super."rss-conduit";
+ "rss2irc" = dontDistribute super."rss2irc";
+ "rtcm" = dontDistribute super."rtcm";
+ "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";
+ "s-cargot" = dontDistribute super."s-cargot";
+ "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-length" = dontDistribute super."safe-length";
+ "safe-plugins" = dontDistribute super."safe-plugins";
+ "safe-printf" = dontDistribute super."safe-printf";
+ "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";
+ "sampling" = dontDistribute super."sampling";
+ "samtools" = dontDistribute super."samtools";
+ "samtools-conduit" = dontDistribute super."samtools-conduit";
+ "samtools-enumerator" = dontDistribute super."samtools-enumerator";
+ "samtools-iteratee" = dontDistribute super."samtools-iteratee";
+ "sandlib" = dontDistribute super."sandlib";
+ "sarasvati" = dontDistribute super."sarasvati";
+ "sarsi" = dontDistribute super."sarsi";
+ "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";
+ "sbvPlugin" = dontDistribute super."sbvPlugin";
+ "sc3-rdu" = dontDistribute super."sc3-rdu";
+ "scalable-server" = dontDistribute super."scalable-server";
+ "scaleimage" = dontDistribute super."scaleimage";
+ "scalp-webhooks" = dontDistribute super."scalp-webhooks";
+ "scalpel" = doDistribute super."scalpel_0_2_1_1";
+ "scan" = dontDistribute super."scan";
+ "scan-vector-machine" = dontDistribute super."scan-vector-machine";
+ "scanner" = dontDistribute super."scanner";
+ "scanner-attoparsec" = dontDistribute super."scanner-attoparsec";
+ "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_10_2";
+ "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-params-parser" = dontDistribute super."scotty-params-parser";
+ "scotty-resource" = dontDistribute super."scotty-resource";
+ "scotty-rest" = dontDistribute super."scotty-rest";
+ "scotty-session" = dontDistribute super."scotty-session";
+ "scotty-tls" = dontDistribute super."scotty-tls";
+ "scotty-view" = dontDistribute super."scotty-view";
+ "scp-streams" = dontDistribute super."scp-streams";
+ "scrabble-bot" = dontDistribute super."scrabble-bot";
+ "scrape-changes" = dontDistribute super."scrape-changes";
+ "scrobble" = dontDistribute super."scrobble";
+ "scroll" = dontDistribute super."scroll";
+ "scrz" = dontDistribute super."scrz";
+ "scyther-proof" = dontDistribute super."scyther-proof";
+ "sde-solver" = dontDistribute super."sde-solver";
+ "sdf2p1-parser" = dontDistribute super."sdf2p1-parser";
+ "sdl2-cairo" = dontDistribute super."sdl2-cairo";
+ "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image";
+ "sdl2-compositor" = dontDistribute super."sdl2-compositor";
+ "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" = doDistribute super."second-transfer_0_7_1_0";
+ "secp256k1" = dontDistribute super."secp256k1";
+ "secret-santa" = dontDistribute super."secret-santa";
+ "secret-sharing" = dontDistribute super."secret-sharing";
+ "secrm" = dontDistribute super."secrm";
+ "secure-sockets" = dontDistribute super."secure-sockets";
+ "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";
+ "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax";
+ "semigroups-actions" = dontDistribute super."semigroups-actions";
+ "semiring" = dontDistribute super."semiring";
+ "semiring-simple" = dontDistribute super."semiring-simple";
+ "semver-range" = dontDistribute super."semver-range";
+ "sendgrid-haskell" = dontDistribute super."sendgrid-haskell";
+ "sensei" = dontDistribute super."sensei";
+ "sensenet" = dontDistribute super."sensenet";
+ "sentry" = dontDistribute super."sentry";
+ "senza" = dontDistribute super."senza";
+ "separated" = dontDistribute super."separated";
+ "seqaid" = dontDistribute super."seqaid";
+ "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";
+ "serial" = dontDistribute super."serial";
+ "serial-test-generators" = dontDistribute super."serial-test-generators";
+ "serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
+ "serv" = dontDistribute super."serv";
+ "serv-wai" = dontDistribute super."serv-wai";
+ "servant" = doDistribute super."servant_0_4_4_7";
+ "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7";
+ "servant-cassava" = dontDistribute super."servant-cassava";
+ "servant-client" = doDistribute super."servant-client_0_4_4_7";
+ "servant-csharp" = dontDistribute super."servant-csharp";
+ "servant-docs" = doDistribute super."servant-docs_0_4_4_7";
+ "servant-ede" = dontDistribute super."servant-ede";
+ "servant-elm" = dontDistribute super."servant-elm";
+ "servant-examples" = dontDistribute super."servant-examples";
+ "servant-foreign" = dontDistribute super."servant-foreign";
+ "servant-github" = dontDistribute super."servant-github";
+ "servant-haxl-client" = dontDistribute super."servant-haxl-client";
+ "servant-js" = dontDistribute super."servant-js";
+ "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-quickcheck" = dontDistribute super."servant-quickcheck";
+ "servant-response" = dontDistribute super."servant-response";
+ "servant-scotty" = dontDistribute super."servant-scotty";
+ "servant-server" = doDistribute super."servant-server_0_4_4_7";
+ "servant-swagger" = doDistribute super."servant-swagger_0_1_2";
+ "ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
+ "sessions" = dontDistribute super."sessions";
+ "set-cover" = dontDistribute super."set-cover";
+ "set-extra" = doDistribute super."set-extra_1_3_2";
+ "set-with" = dontDistribute super."set-with";
+ "setdown" = dontDistribute super."setdown";
+ "setgame" = dontDistribute super."setgame";
+ "setops" = dontDistribute super."setops";
+ "setters" = dontDistribute super."setters";
+ "settings" = dontDistribute super."settings";
+ "sexp" = dontDistribute super."sexp";
+ "sexp-grammar" = dontDistribute super."sexp-grammar";
+ "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-cabal-build" = dontDistribute super."shake-cabal-build";
+ "shake-extras" = dontDistribute super."shake-extras";
+ "shake-language-c" = doDistribute super."shake-language-c_0_8_6";
+ "shake-minify" = dontDistribute super."shake-minify";
+ "shake-pack" = dontDistribute super."shake-pack";
+ "shake-persist" = dontDistribute super."shake-persist";
+ "shaker" = dontDistribute super."shaker";
+ "shakespeare-babel" = dontDistribute super."shakespeare-babel";
+ "shakespeare-css" = dontDistribute super."shakespeare-css";
+ "shakespeare-i18n" = dontDistribute super."shakespeare-i18n";
+ "shakespeare-js" = dontDistribute super."shakespeare-js";
+ "shakespeare-text" = dontDistribute super."shakespeare-text";
+ "shana" = dontDistribute super."shana";
+ "shapefile" = dontDistribute super."shapefile";
+ "shapely-data" = dontDistribute super."shapely-data";
+ "sharc-timbre" = dontDistribute super."sharc-timbre";
+ "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";
+ "shelly-extra" = dontDistribute super."shelly-extra";
+ "shine" = dontDistribute super."shine";
+ "shine-varying" = dontDistribute super."shine-varying";
+ "shivers-cfg" = dontDistribute super."shivers-cfg";
+ "shoap" = dontDistribute super."shoap";
+ "shortcircuit" = dontDistribute super."shortcircuit";
+ "shorten-strings" = dontDistribute super."shorten-strings";
+ "should-not-typecheck" = doDistribute super."should-not-typecheck_2_0_1";
+ "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";
+ "signals" = dontDistribute super."signals";
+ "signed-multiset" = dontDistribute super."signed-multiset";
+ "simd" = dontDistribute super."simd";
+ "simgi" = dontDistribute super."simgi";
+ "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-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
+ "simple-server" = dontDistribute super."simple-server";
+ "simple-sessions" = dontDistribute super."simple-sessions";
+ "simple-sql-parser" = dontDistribute super."simple-sql-parser";
+ "simple-stacked-vm" = dontDistribute super."simple-stacked-vm";
+ "simple-tabular" = dontDistribute super."simple-tabular";
+ "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";
+ "simplest-sqlite" = dontDistribute super."simplest-sqlite";
+ "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";
+ "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";
+ "skeleton" = dontDistribute super."skeleton";
+ "skell" = dontDistribute super."skell";
+ "skemmtun" = dontDistribute super."skemmtun";
+ "skulk" = dontDistribute super."skulk";
+ "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";
+ "sleep" = dontDistribute super."sleep";
+ "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";
+ "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";
+ "smt-lib" = dontDistribute super."smt-lib";
+ "smtlib2" = dontDistribute super."smtlib2";
+ "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-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-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-language" = dontDistribute super."snap-language";
+ "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
+ "snap-loader-static" = dontDistribute super."snap-loader-static";
+ "snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
+ "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-ghcjs" = dontDistribute super."snaplet-ghcjs";
+ "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";
+ "snow-white" = dontDistribute super."snow-white";
+ "snowball" = dontDistribute super."snowball";
+ "snowglobe" = dontDistribute super."snowglobe";
+ "sock2stream" = dontDistribute super."sock2stream";
+ "sockaddr" = dontDistribute super."sockaddr";
+ "socket" = doDistribute super."socket_0_5_3_1";
+ "socket-activation" = dontDistribute super."socket-activation";
+ "socket-sctp" = dontDistribute super."socket-sctp";
+ "socketio" = dontDistribute super."socketio";
+ "socketson" = dontDistribute super."socketson";
+ "soegtk" = dontDistribute super."soegtk";
+ "solr" = dontDistribute super."solr";
+ "sonic-visualiser" = dontDistribute super."sonic-visualiser";
+ "sophia" = dontDistribute super."sophia";
+ "sort-by-pinyin" = dontDistribute super."sort-by-pinyin";
+ "sorted" = dontDistribute super."sorted";
+ "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";
+ "sparkle" = dontDistribute super."sparkle";
+ "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";
+ "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";
+ "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";
+ "sproxy" = dontDistribute super."sproxy";
+ "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-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";
+ "srec" = dontDistribute super."srec";
+ "sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
+ "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-marriage" = dontDistribute super."stable-marriage";
+ "stable-memo" = dontDistribute super."stable-memo";
+ "stable-tree" = dontDistribute super."stable-tree";
+ "stack" = doDistribute super."stack_1_0_2";
+ "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls";
+ "stack-prism" = dontDistribute super."stack-prism";
+ "stack-run" = dontDistribute super."stack-run";
+ "stackage-curator" = doDistribute super."stackage-curator_0_13_3";
+ "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown";
+ "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-record" = dontDistribute super."state-record";
+ "statechart" = dontDistribute super."statechart";
+ "stateful-mtl" = dontDistribute super."stateful-mtl";
+ "statethread" = dontDistribute super."statethread";
+ "statgrab" = dontDistribute super."statgrab";
+ "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-client" = dontDistribute super."statsd-client";
+ "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-chunked-queues" = dontDistribute super."stm-chunked-queues";
+ "stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "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";
+ "stratosphere" = dontDistribute super."stratosphere";
+ "stratum-tool" = dontDistribute super."stratum-tool";
+ "stream" = dontDistribute super."stream";
+ "stream-fusion" = dontDistribute super."stream-fusion";
+ "stream-monad" = dontDistribute super."stream-monad";
+ "streamed" = dontDistribute super."streamed";
+ "streaming-histogram" = dontDistribute super."streaming-histogram";
+ "streaming-png" = dontDistribute super."streaming-png";
+ "streaming-utils" = dontDistribute super."streaming-utils";
+ "streaming-wai" = dontDistribute super."streaming-wai";
+ "strict-base-types" = doDistribute super."strict-base-types_0_4_0";
+ "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-conv" = dontDistribute super."string-conv";
+ "string-convert" = dontDistribute super."string-convert";
+ "string-quote" = dontDistribute super."string-quote";
+ "string-similarity" = dontDistribute super."string-similarity";
+ "string-typelits" = dontDistribute super."string-typelits";
+ "stringlike" = dontDistribute super."stringlike";
+ "stringprep" = dontDistribute super."stringprep";
+ "strings" = dontDistribute super."strings";
+ "stringtable-atom" = dontDistribute super."stringtable-atom";
+ "strio" = dontDistribute super."strio";
+ "stripe" = dontDistribute super."stripe";
+ "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2";
+ "strive" = dontDistribute super."strive";
+ "strptime" = dontDistribute super."strptime";
+ "structs" = dontDistribute super."structs";
+ "structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
+ "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";
+ "stylized" = dontDistribute super."stylized";
+ "sub-state" = dontDistribute super."sub-state";
+ "subhask" = dontDistribute super."subhask";
+ "subleq-toolchain" = dontDistribute super."subleq-toolchain";
+ "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";
+ "sump" = dontDistribute super."sump";
+ "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";
+ "super-user-spark" = dontDistribute super."super-user-spark";
+ "supercollider-ht" = dontDistribute super."supercollider-ht";
+ "supercollider-midi" = dontDistribute super."supercollider-midi";
+ "superdoc" = dontDistribute super."superdoc";
+ "supero" = dontDistribute super."supero";
+ "supervisor" = dontDistribute super."supervisor";
+ "supplemented" = dontDistribute super."supplemented";
+ "suspend" = dontDistribute super."suspend";
+ "svg-builder" = dontDistribute super."svg-builder";
+ "svg-tree" = doDistribute super."svg-tree_0_3_2";
+ "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";
+ "swagger2" = doDistribute super."swagger2_1_2_1";
+ "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-extras" = dontDistribute super."syb-extras";
+ "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";
+ "symengine-hs" = dontDistribute super."symengine-hs";
+ "sync" = dontDistribute super."sync";
+ "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-filter" = dontDistribute super."synthesizer-filter";
+ "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-canonicalpath" = dontDistribute super."system-canonicalpath";
+ "system-command" = dontDistribute super."system-command";
+ "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-test" = dontDistribute super."system-test";
+ "system-time-monotonic" = dontDistribute super."system-time-monotonic";
+ "system-util" = dontDistribute super."system-util";
+ "system-uuid" = dontDistribute super."system-uuid";
+ "systemd" = dontDistribute super."systemd";
+ "t-regex" = dontDistribute super."t-regex";
+ "t3-client" = dontDistribute super."t3-client";
+ "t3-game" = dontDistribute super."t3-game";
+ "t3-server" = dontDistribute super."t3-server";
+ "ta" = dontDistribute super."ta";
+ "table" = dontDistribute super."table";
+ "table-layout" = dontDistribute super."table-layout";
+ "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-exception-core" = dontDistribute super."tagged-exception-core";
+ "tagged-list" = dontDistribute super."tagged-list";
+ "tagged-th" = dontDistribute super."tagged-th";
+ "tagged-timers" = dontDistribute super."tagged-timers";
+ "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";
+ "tai64" = dontDistribute super."tai64";
+ "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";
+ "tardis" = doDistribute super."tardis_0_3_0_0";
+ "target" = dontDistribute super."target";
+ "task" = dontDistribute super."task";
+ "task-distribution" = dontDistribute super."task-distribution";
+ "taskpool" = dontDistribute super."taskpool";
+ "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0";
+ "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters";
+ "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";
+ "tateti-tateti" = dontDistribute super."tateti-tateti";
+ "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";
+ "telegram-api" = dontDistribute super."telegram-api";
+ "teleport" = dontDistribute super."teleport";
+ "template-default" = dontDistribute super."template-default";
+ "template-haskell-util" = dontDistribute super."template-haskell-util";
+ "template-hsml" = dontDistribute super."template-hsml";
+ "template-yj" = dontDistribute super."template-yj";
+ "templatepg" = dontDistribute super."templatepg";
+ "templater" = dontDistribute super."templater";
+ "tempo" = dontDistribute super."tempo";
+ "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";
+ "termination-combinators" = dontDistribute super."termination-combinators";
+ "terminfo" = doDistribute super."terminfo_0_4_0_2";
+ "terminfo-hs" = dontDistribute super."terminfo-hs";
+ "termplot" = dontDistribute super."termplot";
+ "terntup" = dontDistribute super."terntup";
+ "terrahs" = dontDistribute super."terrahs";
+ "tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
+ "test-framework-doctest" = dontDistribute super."test-framework-doctest";
+ "test-framework-golden" = dontDistribute super."test-framework-golden";
+ "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-testing-feat" = dontDistribute super."test-framework-testing-feat";
+ "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";
+ "testPkg" = dontDistribute super."testPkg";
+ "testing-type-modifiers" = dontDistribute super."testing-type-modifiers";
+ "testloop" = dontDistribute super."testloop";
+ "testpack" = dontDistribute super."testpack";
+ "testpattern" = dontDistribute super."testpattern";
+ "testrunner" = dontDistribute super."testrunner";
+ "tetris" = dontDistribute super."tetris";
+ "tex2txt" = dontDistribute super."tex2txt";
+ "texrunner" = dontDistribute super."texrunner";
+ "text-and-plots" = dontDistribute super."text-and-plots";
+ "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-normal" = dontDistribute super."text-normal";
+ "text-position" = dontDistribute super."text-position";
+ "text-postgresql" = dontDistribute super."text-postgresql";
+ "text-printer" = dontDistribute super."text-printer";
+ "text-regex-replace" = dontDistribute super."text-regex-replace";
+ "text-region" = dontDistribute super."text-region";
+ "text-register-machine" = dontDistribute super."text-register-machine";
+ "text-render" = dontDistribute super."text-render";
+ "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" = doDistribute super."text-zipper_0_3_1";
+ "text1" = dontDistribute super."text1";
+ "textPlot" = dontDistribute super."textPlot";
+ "textmatetags" = dontDistribute super."textmatetags";
+ "textocat-api" = dontDistribute super."textocat-api";
+ "texts" = dontDistribute super."texts";
+ "textual" = dontDistribute super."textual";
+ "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-cas" = dontDistribute super."th-cas";
+ "th-context" = dontDistribute super."th-context";
+ "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
+ "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-kinds-fork" = dontDistribute super."th-kinds-fork";
+ "th-lift-instances" = dontDistribute super."th-lift-instances";
+ "th-printf" = dontDistribute super."th-printf";
+ "th-sccs" = dontDistribute super."th-sccs";
+ "th-traced" = dontDistribute super."th-traced";
+ "th-typegraph" = dontDistribute super."th-typegraph";
+ "th-utilities" = dontDistribute super."th-utilities";
+ "themoviedb" = dontDistribute super."themoviedb";
+ "themplate" = dontDistribute super."themplate";
+ "theoremquest" = dontDistribute super."theoremquest";
+ "theoremquest-client" = dontDistribute super."theoremquest-client";
+ "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";
+ "thumbnail" = dontDistribute super."thumbnail";
+ "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-serial" = dontDistribute super."tidal-serial";
+ "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-cache" = dontDistribute super."time-cache";
+ "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-out" = dontDistribute super."time-out";
+ "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-w3c" = dontDistribute super."time-w3c";
+ "timecalc" = dontDistribute super."timecalc";
+ "timeconsole" = dontDistribute super."timeconsole";
+ "timeless" = dontDistribute super."timeless";
+ "timelike" = dontDistribute super."timelike";
+ "timelike-clock" = dontDistribute super."timelike-clock";
+ "timelike-time" = dontDistribute super."timelike-time";
+ "timemap" = dontDistribute super."timemap";
+ "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";
+ "timers" = dontDistribute super."timers";
+ "timers-updatable" = dontDistribute super."timers-updatable";
+ "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines";
+ "timestamper" = dontDistribute super."timestamper";
+ "timezone-olson-th" = dontDistribute super."timezone-olson-th";
+ "timing-convenience" = dontDistribute super."timing-convenience";
+ "tinyMesh" = dontDistribute super."tinyMesh";
+ "tinylog" = doDistribute super."tinylog_0_12_1";
+ "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend";
+ "tip-lib" = dontDistribute super."tip-lib";
+ "tiphys" = dontDistribute super."tiphys";
+ "titlecase" = dontDistribute super."titlecase";
+ "tkhs" = dontDistribute super."tkhs";
+ "tkyprof" = dontDistribute super."tkyprof";
+ "tld" = dontDistribute super."tld";
+ "tls-debug" = doDistribute super."tls-debug_0_4_1";
+ "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";
+ "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";
+ "total" = dontDistribute super."total";
+ "total-alternative" = dontDistribute super."total-alternative";
+ "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";
+ "tracetree" = dontDistribute super."tracetree";
+ "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-compose" = dontDistribute super."transformers-compose";
+ "transformers-convert" = dontDistribute super."transformers-convert";
+ "transformers-eff" = dontDistribute super."transformers-eff";
+ "transformers-free" = dontDistribute super."transformers-free";
+ "transformers-runnable" = dontDistribute super."transformers-runnable";
+ "transformers-supply" = dontDistribute super."transformers-supply";
+ "transient" = dontDistribute super."transient";
+ "transient-universe" = dontDistribute super."transient-universe";
+ "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-fun" = dontDistribute super."tree-fun";
+ "tree-monad" = dontDistribute super."tree-monad";
+ "treemap-html" = dontDistribute super."treemap-html";
+ "treemap-html-tools" = dontDistribute super."treemap-html-tools";
+ "treersec" = dontDistribute super."treersec";
+ "treeviz" = dontDistribute super."treeviz";
+ "tremulous-query" = dontDistribute super."tremulous-query";
+ "trhsx" = dontDistribute super."trhsx";
+ "triangulation" = dontDistribute super."triangulation";
+ "trimpolya" = dontDistribute super."trimpolya";
+ "tripLL" = dontDistribute super."tripLL";
+ "trivia" = dontDistribute super."trivia";
+ "trivial-constraint" = dontDistribute super."trivial-constraint";
+ "tropical" = dontDistribute super."tropical";
+ "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";
+ "tslib" = dontDistribute super."tslib";
+ "tslogger" = dontDistribute super."tslogger";
+ "tsp-viz" = dontDistribute super."tsp-viz";
+ "tsparse" = dontDistribute super."tsparse";
+ "tst" = dontDistribute super."tst";
+ "tsvsql" = dontDistribute super."tsvsql";
+ "ttask" = dontDistribute super."ttask";
+ "tttool" = doDistribute super."tttool_1_5_1";
+ "tubes" = dontDistribute super."tubes";
+ "tuntap" = dontDistribute super."tuntap";
+ "tup-functor" = dontDistribute super."tup-functor";
+ "tuple" = dontDistribute super."tuple";
+ "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";
+ "tupleinstances" = dontDistribute super."tupleinstances";
+ "turing" = dontDistribute super."turing";
+ "turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
+ "turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
+ "turni" = dontDistribute super."turni";
+ "turtle-options" = dontDistribute super."turtle-options";
+ "tweak" = dontDistribute super."tweak";
+ "twee" = dontDistribute super."twee";
+ "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";
+ "twentyseven" = dontDistribute super."twentyseven";
+ "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" = doDistribute super."twitter-conduit_0_1_3";
+ "twitter-enumerator" = dontDistribute super."twitter-enumerator";
+ "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-booleans" = dontDistribute super."type-booleans";
+ "type-cache" = dontDistribute super."type-cache";
+ "type-cereal" = dontDistribute super."type-cereal";
+ "type-combinators" = dontDistribute super."type-combinators";
+ "type-combinators-quote" = dontDistribute super."type-combinators-quote";
+ "type-digits" = dontDistribute super."type-digits";
+ "type-equality" = dontDistribute super."type-equality";
+ "type-equality-check" = dontDistribute super."type-equality-check";
+ "type-fun" = dontDistribute super."type-fun";
+ "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-sets" = dontDistribute super."type-level-sets";
+ "type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
+ "type-natural" = dontDistribute super."type-natural";
+ "type-operators" = dontDistribute super."type-operators";
+ "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";
+ "typed-spreadsheet" = dontDistribute super."typed-spreadsheet";
+ "typed-wire" = dontDistribute super."typed-wire";
+ "typed-wire-utils" = dontDistribute super."typed-wire-utils";
+ "typedquery" = dontDistribute super."typedquery";
+ "typehash" = dontDistribute super."typehash";
+ "typelevel" = dontDistribute super."typelevel";
+ "typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typeof" = dontDistribute super."typeof";
+ "typeparams" = dontDistribute super."typeparams";
+ "typesafe-endian" = dontDistribute super."typesafe-endian";
+ "typescript-docs" = dontDistribute super."typescript-docs";
+ "typical" = dontDistribute super."typical";
+ "typography-geometry" = dontDistribute super."typography-geometry";
+ "uAgda" = dontDistribute super."uAgda";
+ "ua-parser" = dontDistribute super."ua-parser";
+ "uacpid" = dontDistribute super."uacpid";
+ "uber" = dontDistribute super."uber";
+ "uberlast" = dontDistribute super."uberlast";
+ "uconv" = dontDistribute super."uconv";
+ "udbus" = dontDistribute super."udbus";
+ "udbus-model" = dontDistribute super."udbus-model";
+ "udcode" = dontDistribute super."udcode";
+ "udev" = dontDistribute super."udev";
+ "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";
+ "unbounded-delays-units" = dontDistribute super."unbounded-delays-units";
+ "unboxed-containers" = dontDistribute super."unboxed-containers";
+ "unbreak" = dontDistribute super."unbreak";
+ "uncertain" = dontDistribute super."uncertain";
+ "unfoldable" = dontDistribute super."unfoldable";
+ "unfoldable-restricted" = dontDistribute super."unfoldable-restricted";
+ "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-show" = dontDistribute super."unicode-show";
+ "unicode-symbols" = dontDistribute super."unicode-symbols";
+ "unicoder" = dontDistribute super."unicoder";
+ "uniform-io" = dontDistribute super."uniform-io";
+ "uniform-pair" = dontDistribute super."uniform-pair";
+ "union" = dontDistribute super."union";
+ "union-find-array" = dontDistribute super."union-find-array";
+ "union-map" = dontDistribute super."union-map";
+ "unique" = dontDistribute super."unique";
+ "unique-logic" = dontDistribute super."unique-logic";
+ "unique-logic-tf" = dontDistribute super."unique-logic-tf";
+ "uniqueid" = dontDistribute super."uniqueid";
+ "unit" = dontDistribute super."unit";
+ "unit-constraint" = dontDistribute super."unit-constraint";
+ "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-th" = dontDistribute super."universe-th";
+ "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" = doDistribute super."unordered-containers_0_2_5_1";
+ "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch";
+ "unordered-graphs" = dontDistribute super."unordered-graphs";
+ "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";
+ "unsequential" = dontDistribute super."unsequential";
+ "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" = doDistribute super."uri-bytestring_0_1_9_2";
+ "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";
+ "url-generic" = dontDistribute super."url-generic";
+ "urlcheck" = dontDistribute super."urlcheck";
+ "urldecode" = dontDistribute super."urldecode";
+ "urldisp-happstack" = dontDistribute super."urldisp-happstack";
+ "urlencoded" = dontDistribute super."urlencoded";
+ "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";
+ "users" = doDistribute super."users_0_4_0_0";
+ "users-persistent" = doDistribute super."users-persistent_0_4_0_0";
+ "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0";
+ "users-test" = doDistribute super."users-test_0_4_0_0";
+ "utc" = dontDistribute super."utc";
+ "utf8-env" = dontDistribute super."utf8-env";
+ "utf8-prelude" = dontDistribute super."utf8-prelude";
+ "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-options" = dontDistribute super."uu-options";
+ "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-aeson" = dontDistribute super."uuid-aeson";
+ "uuid-le" = dontDistribute super."uuid-le";
+ "uuid-quasi" = dontDistribute super."uuid-quasi";
+ "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";
+ "validated-literals" = dontDistribute super."validated-literals";
+ "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";
+ "vcatt" = dontDistribute super."vcatt";
+ "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-binary" = dontDistribute super."vector-binary";
+ "vector-bytestring" = dontDistribute super."vector-bytestring";
+ "vector-clock" = dontDistribute super."vector-clock";
+ "vector-conduit" = dontDistribute super."vector-conduit";
+ "vector-functorlazy" = dontDistribute super."vector-functorlazy";
+ "vector-heterogenous" = dontDistribute super."vector-heterogenous";
+ "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-sized" = dontDistribute super."vector-sized";
+ "vector-space-map" = dontDistribute super."vector-space-map";
+ "vector-space-opengl" = dontDistribute super."vector-space-opengl";
+ "vector-space-points" = dontDistribute super."vector-space-points";
+ "vector-static" = dontDistribute super."vector-static";
+ "vector-strategies" = dontDistribute super."vector-strategies";
+ "verbalexpressions" = dontDistribute super."verbalexpressions";
+ "verbosity" = dontDistribute super."verbosity";
+ "verdict" = dontDistribute super."verdict";
+ "verdict-json" = dontDistribute super."verdict-json";
+ "verilog" = dontDistribute super."verilog";
+ "versions" = dontDistribute super."versions";
+ "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-gl" = dontDistribute super."vinyl-gl";
+ "vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
+ "vinyl-plus" = dontDistribute super."vinyl-plus";
+ "vinyl-utils" = dontDistribute super."vinyl-utils";
+ "vinyl-vectors" = dontDistribute super."vinyl-vectors";
+ "virthualenv" = dontDistribute super."virthualenv";
+ "visibility" = dontDistribute super."visibility";
+ "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";
+ "vorbiscomment" = dontDistribute super."vorbiscomment";
+ "vowpal-utils" = dontDistribute super."vowpal-utils";
+ "voyeur" = dontDistribute super."voyeur";
+ "vrpn" = dontDistribute super."vrpn";
+ "vte" = dontDistribute super."vte";
+ "vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
+ "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";
+ "vulkan" = dontDistribute super."vulkan";
+ "wacom-daemon" = dontDistribute super."wacom-daemon";
+ "waddle" = dontDistribute super."waddle";
+ "wai-accept-language" = dontDistribute super."wai-accept-language";
+ "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
+ "wai-devel" = dontDistribute super."wai-devel";
+ "wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
+ "wai-dispatch" = dontDistribute super."wai-dispatch";
+ "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-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-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-content-type" = dontDistribute super."wai-middleware-content-type";
+ "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-preprocessor" = dontDistribute super."wai-middleware-preprocessor";
+ "wai-middleware-route" = dontDistribute super."wai-middleware-route";
+ "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching";
+ "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs";
+ "wai-request-spec" = dontDistribute super."wai-request-spec";
+ "wai-responsible" = dontDistribute super."wai-responsible";
+ "wai-router" = dontDistribute super."wai-router";
+ "wai-session-alt" = dontDistribute super."wai-session-alt";
+ "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-thrift" = dontDistribute super."wai-thrift";
+ "wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
+ "wait-handle" = dontDistribute super."wait-handle";
+ "waitfree" = dontDistribute super."waitfree";
+ "warc" = dontDistribute super."warc";
+ "warp" = doDistribute super."warp_3_2_2";
+ "warp-dynamic" = dontDistribute super."warp-dynamic";
+ "warp-static" = dontDistribute super."warp-static";
+ "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-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-transformers" = dontDistribute super."web-routes-transformers";
+ "webapi" = dontDistribute super."webapi";
+ "webapp" = dontDistribute super."webapp";
+ "webcloud" = dontDistribute super."webcloud";
+ "webcrank" = dontDistribute super."webcrank";
+ "webcrank-dispatch" = dontDistribute super."webcrank-dispatch";
+ "webcrank-wai" = dontDistribute super."webcrank-wai";
+ "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9";
+ "webdriver-snoy" = dontDistribute super."webdriver-snoy";
+ "webfinger-client" = dontDistribute super."webfinger-client";
+ "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";
+ "webrtc-vad" = dontDistribute super."webrtc-vad";
+ "webserver" = dontDistribute super."webserver";
+ "websnap" = dontDistribute super."websnap";
+ "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";
+ "werewolf" = dontDistribute super."werewolf";
+ "werewolf-slack" = dontDistribute super."werewolf-slack";
+ "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";
+ "wigner-symbols" = dontDistribute super."wigner-symbols";
+ "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";
+ "with-location" = doDistribute super."with-location_0_0_0";
+ "witness" = dontDistribute super."witness";
+ "witty" = dontDistribute super."witty";
+ "wkt" = dontDistribute super."wkt";
+ "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm";
+ "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";
+ "word24" = dontDistribute super."word24";
+ "wordcloud" = dontDistribute super."wordcloud";
+ "wordexp" = dontDistribute super."wordexp";
+ "words" = dontDistribute super."words";
+ "wordsearch" = dontDistribute super."wordsearch";
+ "wordsetdiff" = dontDistribute super."wordsetdiff";
+ "workflow-osx" = dontDistribute super."workflow-osx";
+ "wp-archivebot" = dontDistribute super."wp-archivebot";
+ "wraparound" = dontDistribute super."wraparound";
+ "wraxml" = dontDistribute super."wraxml";
+ "wreq-sb" = dontDistribute super."wreq-sb";
+ "wright" = dontDistribute super."wright";
+ "wsdl" = dontDistribute super."wsdl";
+ "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-util" = dontDistribute super."x509-util";
+ "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";
+ "xdcc" = dontDistribute super."xdcc";
+ "xdg-userdirs" = dontDistribute super."xdg-userdirs";
+ "xdot" = dontDistribute super."xdot";
+ "xfconf" = dontDistribute super."xfconf";
+ "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" = doDistribute super."xhtml_3000_2_1";
+ "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";
+ "xlsx-tabular" = dontDistribute super."xlsx-tabular";
+ "xlsx-templater" = dontDistribute super."xlsx-templater";
+ "xml-basic" = dontDistribute super."xml-basic";
+ "xml-catalog" = dontDistribute super."xml-catalog";
+ "xml-enumerator" = dontDistribute super."xml-enumerator";
+ "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators";
+ "xml-extractors" = dontDistribute super."xml-extractors";
+ "xml-helpers" = dontDistribute super."xml-helpers";
+ "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-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-query" = dontDistribute super."xml-query";
+ "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit";
+ "xml-query-xml-types" = dontDistribute super."xml-query-xml-types";
+ "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-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";
+ "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";
+ "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-config" = dontDistribute super."yaml-config";
+ "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";
+ "yaml-union" = dontDistribute super."yaml-union";
+ "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";
+ "yeshql" = dontDistribute super."yeshql";
+ "yesod-angular" = dontDistribute super."yesod-angular";
+ "yesod-angular-ui" = dontDistribute super."yesod-angular-ui";
+ "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
+ "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_3";
+ "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-ldap-native" = dontDistribute super."yesod-auth-ldap-native";
+ "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth";
+ "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-bootstrap" = dontDistribute super."yesod-bootstrap";
+ "yesod-comments" = dontDistribute super."yesod-comments";
+ "yesod-content-pdf" = dontDistribute super."yesod-content-pdf";
+ "yesod-continuations" = dontDistribute super."yesod-continuations";
+ "yesod-crud" = dontDistribute super."yesod-crud";
+ "yesod-crud-persist" = dontDistribute super."yesod-crud-persist";
+ "yesod-csp" = dontDistribute super."yesod-csp";
+ "yesod-datatables" = dontDistribute super."yesod-datatables";
+ "yesod-dsl" = dontDistribute super."yesod-dsl";
+ "yesod-examples" = dontDistribute super."yesod-examples";
+ "yesod-form-json" = dontDistribute super."yesod-form-json";
+ "yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
+ "yesod-goodies" = dontDistribute super."yesod-goodies";
+ "yesod-job-queue" = dontDistribute super."yesod-job-queue";
+ "yesod-json" = dontDistribute super."yesod-json";
+ "yesod-links" = dontDistribute super."yesod-links";
+ "yesod-lucid" = dontDistribute super."yesod-lucid";
+ "yesod-markdown" = dontDistribute super."yesod-markdown";
+ "yesod-media-simple" = dontDistribute super."yesod-media-simple";
+ "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5";
+ "yesod-paginate" = dontDistribute super."yesod-paginate";
+ "yesod-pagination" = dontDistribute super."yesod-pagination";
+ "yesod-paginator" = dontDistribute super."yesod-paginator";
+ "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-raml-bin" = dontDistribute super."yesod-raml-bin";
+ "yesod-raml-docs" = dontDistribute super."yesod-raml-docs";
+ "yesod-raml-mock" = dontDistribute super."yesod-raml-mock";
+ "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-angular" = doDistribute super."yesod-static-angular_0_1_7";
+ "yesod-tableview" = dontDistribute super."yesod-tableview";
+ "yesod-test-json" = dontDistribute super."yesod-test-json";
+ "yesod-tls" = dontDistribute super."yesod-tls";
+ "yesod-transloadit" = dontDistribute super."yesod-transloadit";
+ "yesod-vend" = dontDistribute super."yesod-vend";
+ "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-contrib" = dontDistribute super."yi-contrib";
+ "yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
+ "yi-gtk" = dontDistribute super."yi-gtk";
+ "yi-monokai" = dontDistribute super."yi-monokai";
+ "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";
+ "yoctoparsec" = dontDistribute super."yoctoparsec";
+ "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";
+ "zerobin" = dontDistribute super."zerobin";
+ "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";
+ "zim-parser" = doDistribute super."zim-parser_0_1_0_0";
+ "zip" = dontDistribute super."zip";
+ "zip-conduit" = dontDistribute super."zip-conduit";
+ "zipedit" = dontDistribute super."zipedit";
+ "zipkin" = dontDistribute super."zipkin";
+ "zipper" = dontDistribute super."zipper";
+ "zippers" = dontDistribute super."zippers";
+ "zippo" = dontDistribute super."zippo";
+ "zlib-conduit" = dontDistribute super."zlib-conduit";
+ "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-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix
index 586fa1423ab..751dede7bca 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix
@@ -339,6 +339,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -474,6 +475,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -563,6 +565,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -599,6 +602,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -633,6 +637,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -709,6 +714,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -976,7 +982,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1040,6 +1045,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1341,6 +1347,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1584,6 +1591,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1616,6 +1624,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1710,6 +1719,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1834,6 +1844,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1979,6 +1990,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2111,9 +2123,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2130,6 +2144,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2242,6 +2257,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2354,6 +2370,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-inttrie" = doDistribute super."data-inttrie_0_1_0";
"data-ivar" = dontDistribute super."data-ivar";
@@ -2476,7 +2493,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2727,6 +2747,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg" = doDistribute super."ekg_0_4_0_8";
"ekg-bosun" = dontDistribute super."ekg-bosun";
@@ -2746,6 +2767,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_0";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2760,6 +2782,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2834,11 +2857,13 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_1";
"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" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2888,6 +2913,7 @@ self: super: {
"fail" = dontDistribute super."fail";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3182,6 +3208,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3209,6 +3236,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3267,9 +3295,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3506,6 +3536,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3588,6 +3619,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3655,6 +3687,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -4008,6 +4042,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4070,10 +4105,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4447,6 +4486,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4550,6 +4590,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4604,6 +4645,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4623,6 +4665,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4643,6 +4686,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4752,6 +4796,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5169,6 +5214,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5405,6 +5451,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5639,6 +5686,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5673,6 +5721,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5720,6 +5769,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5734,6 +5784,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5825,6 +5876,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5842,6 +5894,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5896,6 +5949,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6113,6 +6167,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6205,6 +6260,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6293,6 +6349,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6463,6 +6520,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6477,6 +6535,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6489,6 +6548,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6822,6 +6882,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6950,6 +7011,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -7010,6 +7072,7 @@ self: super: {
"sme" = dontDistribute super."sme";
"smoothie" = doDistribute super."smoothie_0_4_2_1";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7030,6 +7093,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7165,6 +7229,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7285,6 +7350,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7471,6 +7537,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7517,6 +7584,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7532,6 +7600,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7572,6 +7641,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7718,6 +7788,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -7774,6 +7845,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7792,6 +7864,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -8007,6 +8080,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -8025,6 +8099,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8084,6 +8159,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8418,6 +8494,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix
index f1ce759151c..9c28a5b6fb4 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix
@@ -337,6 +337,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -471,6 +472,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -560,6 +562,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -596,6 +599,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -630,6 +634,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -706,6 +711,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -973,7 +979,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1037,6 +1042,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1337,6 +1343,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1579,6 +1586,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1611,6 +1619,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1705,6 +1714,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1829,6 +1839,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1973,6 +1984,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2104,9 +2116,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2123,6 +2137,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2235,6 +2250,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2347,6 +2363,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-ivar" = dontDistribute super."data-ivar";
"data-json-token" = dontDistribute super."data-json-token";
@@ -2468,7 +2485,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2718,6 +2738,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2735,6 +2756,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_0";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2749,6 +2771,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2821,11 +2844,13 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_2";
"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" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2874,6 +2899,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3167,6 +3193,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3193,6 +3220,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3251,9 +3279,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3489,6 +3519,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3571,6 +3602,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3638,6 +3670,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -3991,6 +4025,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4053,10 +4088,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4430,6 +4469,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4533,6 +4573,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4586,6 +4627,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4605,6 +4647,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4625,6 +4668,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4734,6 +4778,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5150,6 +5195,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5385,6 +5431,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5619,6 +5666,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5653,6 +5701,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5700,6 +5749,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5714,6 +5764,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5805,6 +5856,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5822,6 +5874,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5875,6 +5928,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6092,6 +6146,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6184,6 +6239,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6272,6 +6328,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6441,6 +6498,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6454,6 +6512,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6465,6 +6524,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6798,6 +6858,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6926,6 +6987,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6984,6 +7046,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -7004,6 +7067,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7138,6 +7202,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7194,6 +7259,7 @@ self: super: {
"stm-channelize" = dontDistribute super."stm-channelize";
"stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
"stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-containers" = doDistribute super."stm-containers_0_2_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7257,6 +7323,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7443,6 +7510,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7489,6 +7557,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7504,6 +7573,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7544,6 +7614,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7690,6 +7761,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -7746,6 +7818,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7764,6 +7837,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7978,6 +8052,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7996,6 +8071,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8052,6 +8128,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8386,6 +8463,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix
index e123a04f318..171616fa39c 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix
@@ -337,6 +337,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -470,6 +471,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -559,6 +561,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -595,6 +598,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -629,6 +633,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -705,6 +710,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -972,7 +978,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1036,6 +1041,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1335,6 +1341,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1577,6 +1584,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1609,6 +1617,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1703,6 +1712,7 @@ self: super: {
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
"btrfs" = doDistribute super."btrfs_0_1_1_1";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1827,6 +1837,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1971,6 +1982,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2101,9 +2113,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2120,6 +2134,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2231,6 +2246,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2343,6 +2359,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-ivar" = dontDistribute super."data-ivar";
"data-json-token" = dontDistribute super."data-json-token";
@@ -2464,7 +2481,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2710,6 +2730,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2727,6 +2748,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2741,6 +2763,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2813,11 +2836,13 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_2";
"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" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2866,6 +2891,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3158,6 +3184,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3184,6 +3211,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3241,9 +3269,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3479,6 +3509,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3561,6 +3592,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3628,6 +3660,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -3981,6 +4015,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4043,10 +4078,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4418,6 +4457,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4521,6 +4561,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4574,6 +4615,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4593,6 +4635,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4613,6 +4656,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4722,6 +4766,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5136,6 +5181,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5371,6 +5417,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5603,6 +5650,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5635,6 +5683,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5682,6 +5731,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5696,6 +5746,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5787,6 +5838,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5804,6 +5856,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5856,6 +5909,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6072,6 +6126,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6164,6 +6219,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6252,6 +6308,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6420,6 +6477,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6433,6 +6491,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6444,6 +6503,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6777,6 +6837,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6905,6 +6966,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6963,6 +7025,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6983,6 +7046,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7117,6 +7181,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7173,6 +7238,7 @@ self: super: {
"stm-channelize" = dontDistribute super."stm-channelize";
"stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
"stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-containers" = doDistribute super."stm-containers_0_2_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7236,6 +7302,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7421,6 +7488,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7467,6 +7535,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7482,6 +7551,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7522,6 +7592,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7668,6 +7739,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -7723,6 +7795,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7741,6 +7814,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7955,6 +8029,7 @@ self: super: {
"vinyl" = doDistribute super."vinyl_0_5_1";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7973,6 +8048,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8029,6 +8105,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8363,6 +8440,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix
index 6657efbd460..a2c068dc2e4 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix
@@ -337,6 +337,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -470,6 +471,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -559,6 +561,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -595,6 +598,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -629,6 +633,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -705,6 +710,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -972,7 +978,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1036,6 +1041,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1335,6 +1341,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1577,6 +1584,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1609,6 +1617,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1702,6 +1711,7 @@ self: super: {
"bspack" = dontDistribute super."bspack";
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1826,6 +1836,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1968,6 +1979,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2098,9 +2110,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2117,6 +2131,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2228,6 +2243,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2340,6 +2356,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-ivar" = dontDistribute super."data-ivar";
"data-json-token" = dontDistribute super."data-json-token";
@@ -2461,7 +2478,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2707,6 +2727,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2724,6 +2745,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2738,6 +2760,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2810,11 +2833,13 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_2";
"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" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2863,6 +2888,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3155,6 +3181,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3181,6 +3208,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3238,9 +3266,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3476,6 +3506,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3558,6 +3589,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3625,6 +3657,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -3977,6 +4011,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4039,10 +4074,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4413,6 +4452,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4516,6 +4556,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4569,6 +4610,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4588,6 +4630,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4608,6 +4651,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4717,6 +4761,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5131,6 +5176,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5366,6 +5412,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5598,6 +5645,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5630,6 +5678,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5677,6 +5726,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5691,6 +5741,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5782,6 +5833,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5799,6 +5851,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5851,6 +5904,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6067,6 +6121,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6159,6 +6214,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6247,6 +6303,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6415,6 +6472,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6428,6 +6486,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6439,6 +6498,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6772,6 +6832,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6900,6 +6961,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6958,6 +7020,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6978,6 +7041,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7112,6 +7176,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7168,6 +7233,7 @@ self: super: {
"stm-channelize" = dontDistribute super."stm-channelize";
"stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
"stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-containers" = doDistribute super."stm-containers_0_2_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7231,6 +7297,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7416,6 +7483,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7462,6 +7530,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7477,6 +7546,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7517,6 +7587,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7663,6 +7734,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -7718,6 +7790,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7736,6 +7809,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7948,6 +8022,7 @@ self: super: {
"vintage-basic" = dontDistribute super."vintage-basic";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7966,6 +8041,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8022,6 +8098,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8355,6 +8432,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix
index 24c834831c7..9189017a931 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix
@@ -337,6 +337,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -469,6 +470,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -558,6 +560,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -594,6 +597,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -628,6 +632,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -704,6 +709,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -971,7 +977,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1035,6 +1040,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1334,6 +1340,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1369,6 +1376,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1476,6 +1484,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1574,6 +1583,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1606,6 +1616,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1698,6 +1709,7 @@ self: super: {
"bspack" = dontDistribute super."bspack";
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1821,6 +1833,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1963,6 +1976,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2093,9 +2107,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2112,6 +2128,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2222,6 +2239,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2334,6 +2352,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-ivar" = dontDistribute super."data-ivar";
"data-json-token" = dontDistribute super."data-json-token";
@@ -2455,7 +2474,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2701,6 +2723,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2718,6 +2741,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2732,6 +2756,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2804,11 +2829,13 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_2";
"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" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2857,6 +2884,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3148,6 +3176,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3173,6 +3202,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3230,9 +3260,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3468,6 +3500,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3549,6 +3582,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3616,6 +3650,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -3867,6 +3903,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3966,6 +4003,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4028,10 +4066,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4402,6 +4444,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4505,6 +4548,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4558,6 +4602,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4577,6 +4622,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4597,6 +4643,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4706,6 +4753,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5119,6 +5167,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5353,6 +5402,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5584,6 +5634,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5616,6 +5667,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5663,6 +5715,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5677,6 +5730,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5768,6 +5822,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5785,6 +5840,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5837,6 +5893,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6051,6 +6108,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6143,6 +6201,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6231,6 +6290,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6399,6 +6459,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6412,6 +6473,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6423,6 +6485,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6756,6 +6819,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6884,6 +6948,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6942,6 +7007,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6962,6 +7028,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7096,6 +7163,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7152,6 +7220,7 @@ self: super: {
"stm-channelize" = dontDistribute super."stm-channelize";
"stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
"stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-containers" = doDistribute super."stm-containers_0_2_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7215,6 +7284,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7400,6 +7470,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7446,6 +7517,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7461,6 +7533,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7501,6 +7574,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7646,6 +7720,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -7701,6 +7776,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7719,6 +7795,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7931,6 +8008,7 @@ self: super: {
"vintage-basic" = dontDistribute super."vintage-basic";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7949,6 +8027,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -8004,6 +8083,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8336,6 +8416,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix
index 80ba60f0ab7..6565ffe6572 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix
@@ -337,6 +337,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -469,6 +470,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -558,6 +560,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -594,6 +597,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -628,6 +632,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -704,6 +709,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -971,7 +977,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1035,6 +1040,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1334,6 +1340,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1369,6 +1376,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1476,6 +1484,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1574,6 +1583,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1606,6 +1616,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1698,6 +1709,7 @@ self: super: {
"bspack" = dontDistribute super."bspack";
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1821,6 +1833,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1960,6 +1973,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2090,9 +2104,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2109,6 +2125,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2219,6 +2236,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2331,6 +2349,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-ivar" = dontDistribute super."data-ivar";
"data-json-token" = dontDistribute super."data-json-token";
@@ -2452,7 +2471,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2698,6 +2720,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2715,6 +2738,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2729,6 +2753,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2801,11 +2826,13 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_2";
"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" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2854,6 +2881,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3145,6 +3173,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3170,6 +3199,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3227,9 +3257,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3465,6 +3497,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3546,6 +3579,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3613,6 +3647,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -3864,6 +3900,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3962,6 +3999,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4024,10 +4062,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4397,6 +4439,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4500,6 +4543,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4553,6 +4597,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4572,6 +4617,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4592,6 +4638,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4701,6 +4748,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5114,6 +5162,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5347,6 +5396,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5578,6 +5628,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5610,6 +5661,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5657,6 +5709,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5671,6 +5724,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5762,6 +5816,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5779,6 +5834,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5831,6 +5887,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6043,6 +6100,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6135,6 +6193,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6223,6 +6282,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6391,6 +6451,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6404,6 +6465,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6415,6 +6477,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6747,6 +6810,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6875,6 +6939,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6933,6 +6998,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6953,6 +7019,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7087,6 +7154,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7143,6 +7211,7 @@ self: super: {
"stm-channelize" = dontDistribute super."stm-channelize";
"stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
"stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-containers" = doDistribute super."stm-containers_0_2_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7204,6 +7273,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7389,6 +7459,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7435,6 +7506,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7450,6 +7522,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7490,6 +7563,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7635,6 +7709,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -7689,6 +7764,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7707,6 +7783,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7919,6 +7996,7 @@ self: super: {
"vintage-basic" = dontDistribute super."vintage-basic";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7937,6 +8015,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7992,6 +8071,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8324,6 +8404,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix
index 508263e7022..02697ba8cdd 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix
@@ -337,6 +337,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -469,6 +470,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -558,6 +560,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -594,6 +597,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -628,6 +632,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -704,6 +709,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -971,7 +977,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1035,6 +1040,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1334,6 +1340,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1369,6 +1376,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1476,6 +1484,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1574,6 +1583,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1606,6 +1616,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1698,6 +1709,7 @@ self: super: {
"bspack" = dontDistribute super."bspack";
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1821,6 +1833,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1960,6 +1973,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2090,9 +2104,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2109,6 +2125,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2219,6 +2236,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2331,6 +2349,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-ivar" = dontDistribute super."data-ivar";
"data-json-token" = dontDistribute super."data-json-token";
@@ -2452,7 +2471,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2698,6 +2720,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2715,6 +2738,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2729,6 +2753,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2801,11 +2826,13 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_2";
"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" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2854,6 +2881,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3145,6 +3173,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3170,6 +3199,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3227,9 +3257,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3465,6 +3497,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3546,6 +3579,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3613,6 +3647,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -3864,6 +3900,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3962,6 +3999,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4024,10 +4062,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4397,6 +4439,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4500,6 +4543,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4553,6 +4597,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4572,6 +4617,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4592,6 +4638,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4701,6 +4748,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5114,6 +5162,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5347,6 +5396,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5578,6 +5628,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5610,6 +5661,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5657,6 +5709,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5671,6 +5724,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5762,6 +5816,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5779,6 +5834,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5831,6 +5887,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6043,6 +6100,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6135,6 +6193,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6223,6 +6282,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6391,6 +6451,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6404,6 +6465,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6415,6 +6477,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6747,6 +6810,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_6";
@@ -6875,6 +6939,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6933,6 +6998,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6953,6 +7019,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7087,6 +7154,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7143,6 +7211,7 @@ self: super: {
"stm-channelize" = dontDistribute super."stm-channelize";
"stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
"stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-containers" = doDistribute super."stm-containers_0_2_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7204,6 +7273,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7389,6 +7459,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7435,6 +7506,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7450,6 +7522,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7490,6 +7563,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7635,6 +7709,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -7689,6 +7764,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7707,6 +7783,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7919,6 +7996,7 @@ self: super: {
"vintage-basic" = dontDistribute super."vintage-basic";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7937,6 +8015,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7991,6 +8070,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8323,6 +8403,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix
index bc831536c5c..4220d542ee7 100644
--- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix
+++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix
@@ -337,6 +337,7 @@ self: super: {
"GLHUI" = dontDistribute super."GLHUI";
"GLM" = dontDistribute super."GLM";
"GLMatrix" = dontDistribute super."GLMatrix";
+ "GLURaw" = doDistribute super."GLURaw_2_0_0_1";
"GLUT" = doDistribute super."GLUT_2_7_0_6";
"GLUtil" = dontDistribute super."GLUtil";
"GPX" = dontDistribute super."GPX";
@@ -469,6 +470,7 @@ self: super: {
"HaLeX" = dontDistribute super."HaLeX";
"HaMinitel" = dontDistribute super."HaMinitel";
"HaPy" = dontDistribute super."HaPy";
+ "HaTeX" = doDistribute super."HaTeX_3_16_2_0";
"HaTeX-meta" = dontDistribute super."HaTeX-meta";
"HaTeX-qq" = dontDistribute super."HaTeX-qq";
"HaVSA" = dontDistribute super."HaVSA";
@@ -558,6 +560,7 @@ self: super: {
"JsContracts" = dontDistribute super."JsContracts";
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
+ "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
"JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables";
@@ -594,6 +597,7 @@ self: super: {
"LazyVault" = dontDistribute super."LazyVault";
"Level0" = dontDistribute super."Level0";
"LibClang" = dontDistribute super."LibClang";
+ "LibZip" = doDistribute super."LibZip_0_10_2";
"Limit" = dontDistribute super."Limit";
"LinearSplit" = dontDistribute super."LinearSplit";
"LinguisticsTypes" = dontDistribute super."LinguisticsTypes";
@@ -628,6 +632,7 @@ self: super: {
"Michelangelo" = dontDistribute super."Michelangelo";
"MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator";
"MiniAgda" = dontDistribute super."MiniAgda";
+ "MissingH" = doDistribute super."MissingH_1_3_0_1";
"MissingK" = dontDistribute super."MissingK";
"MissingM" = dontDistribute super."MissingM";
"MissingPy" = dontDistribute super."MissingPy";
@@ -704,6 +709,7 @@ self: super: {
"OpenCLWrappers" = dontDistribute super."OpenCLWrappers";
"OpenGL" = doDistribute super."OpenGL_3_0_0_1";
"OpenGLCheck" = dontDistribute super."OpenGLCheck";
+ "OpenGLRaw" = doDistribute super."OpenGLRaw_3_1_0_0";
"OpenGLRaw21" = dontDistribute super."OpenGLRaw21";
"OpenSCAD" = dontDistribute super."OpenSCAD";
"OpenVG" = dontDistribute super."OpenVG";
@@ -971,7 +977,6 @@ self: super: {
"Webrexp" = dontDistribute super."Webrexp";
"Wheb" = dontDistribute super."Wheb";
"WikimediaParser" = dontDistribute super."WikimediaParser";
- "Win32" = doDistribute super."Win32_2_3_1_0";
"Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server";
"Win32-errors" = dontDistribute super."Win32-errors";
"Win32-junction-point" = dontDistribute super."Win32-junction-point";
@@ -1035,6 +1040,7 @@ self: super: {
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
+ "accelerate-typelits" = dontDistribute super."accelerate-typelits";
"accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time";
@@ -1333,6 +1339,7 @@ self: super: {
"arxiv" = dontDistribute super."arxiv";
"ascetic" = dontDistribute super."ascetic";
"ascii" = dontDistribute super."ascii";
+ "ascii-flatten" = dontDistribute super."ascii-flatten";
"ascii-progress" = doDistribute super."ascii-progress_0_3_2_0";
"ascii-vector-avc" = dontDistribute super."ascii-vector-avc";
"ascii85-conduit" = dontDistribute super."ascii85-conduit";
@@ -1368,6 +1375,7 @@ self: super: {
"atom-basic" = dontDistribute super."atom-basic";
"atom-conduit" = dontDistribute super."atom-conduit";
"atom-msp430" = dontDistribute super."atom-msp430";
+ "atomic-primops" = doDistribute super."atomic-primops_0_8_0_3";
"atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign";
"atomic-primops-vector" = dontDistribute super."atomic-primops-vector";
"atomic-write" = dontDistribute super."atomic-write";
@@ -1475,6 +1483,7 @@ self: super: {
"basex-client" = dontDistribute super."basex-client";
"bash" = dontDistribute super."bash";
"basic-lens" = dontDistribute super."basic-lens";
+ "basic-prelude" = doDistribute super."basic-prelude_0_5_1";
"basic-sop" = dontDistribute super."basic-sop";
"baskell" = dontDistribute super."baskell";
"battlenet" = dontDistribute super."battlenet";
@@ -1573,6 +1582,7 @@ self: super: {
"bindings-libstemmer" = dontDistribute super."bindings-libstemmer";
"bindings-libusb" = dontDistribute super."bindings-libusb";
"bindings-libv4l2" = dontDistribute super."bindings-libv4l2";
+ "bindings-libzip" = doDistribute super."bindings-libzip_0_10_2";
"bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2";
"bindings-lxc" = dontDistribute super."bindings-lxc";
"bindings-mmap" = dontDistribute super."bindings-mmap";
@@ -1605,6 +1615,7 @@ self: super: {
"bit-array" = dontDistribute super."bit-array";
"bit-vector" = dontDistribute super."bit-vector";
"bitarray" = dontDistribute super."bitarray";
+ "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel";
"bitcoin-rpc" = dontDistribute super."bitcoin-rpc";
"bitly-cli" = dontDistribute super."bitly-cli";
"bitmap" = dontDistribute super."bitmap";
@@ -1697,6 +1708,7 @@ self: super: {
"bspack" = dontDistribute super."bspack";
"bsparse" = dontDistribute super."bsparse";
"btree-concurrent" = dontDistribute super."btree-concurrent";
+ "buffer-builder" = doDistribute super."buffer-builder_0_2_4_1";
"buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson";
"buffer-pipe" = dontDistribute super."buffer-pipe";
"buffon" = dontDistribute super."buffon";
@@ -1820,6 +1832,7 @@ self: super: {
"caramia" = dontDistribute super."caramia";
"carboncopy" = dontDistribute super."carboncopy";
"carettah" = dontDistribute super."carettah";
+ "carray" = doDistribute super."carray_0_1_6_3";
"cartel" = doDistribute super."cartel_0_14_2_8";
"casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms";
"casadi-bindings" = dontDistribute super."casadi-bindings";
@@ -1958,6 +1971,7 @@ self: super: {
"clipper" = dontDistribute super."clipper";
"clippings" = dontDistribute super."clippings";
"clist" = dontDistribute super."clist";
+ "cloben" = dontDistribute super."cloben";
"clock" = doDistribute super."clock_0_6_0_1";
"clocked" = dontDistribute super."clocked";
"clogparse" = dontDistribute super."clogparse";
@@ -2088,9 +2102,11 @@ self: super: {
"config-manager" = dontDistribute super."config-manager";
"config-select" = dontDistribute super."config-select";
"config-value" = dontDistribute super."config-value";
+ "config-value-getopt" = dontDistribute super."config-value-getopt";
"configifier" = dontDistribute super."configifier";
"configuration" = dontDistribute super."configuration";
"configuration-tools" = dontDistribute super."configuration-tools";
+ "configurator-export" = doDistribute super."configurator-export_0_1_0_0";
"confsolve" = dontDistribute super."confsolve";
"congruence-relation" = dontDistribute super."congruence-relation";
"conjugateGradient" = dontDistribute super."conjugateGradient";
@@ -2107,6 +2123,7 @@ self: super: {
"constructive-algebra" = dontDistribute super."constructive-algebra";
"consumers" = dontDistribute super."consumers";
"container" = dontDistribute super."container";
+ "container-builder" = dontDistribute super."container-builder";
"container-classes" = dontDistribute super."container-classes";
"containers-benchmark" = dontDistribute super."containers-benchmark";
"containers-deepseq" = dontDistribute super."containers-deepseq";
@@ -2217,6 +2234,7 @@ self: super: {
"cryptohash" = doDistribute super."cryptohash_0_11_6";
"cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3";
"cryptohash-md5" = dontDistribute super."cryptohash-md5";
+ "cryptohash-sha1" = dontDistribute super."cryptohash-sha1";
"cryptohash-sha256" = dontDistribute super."cryptohash-sha256";
"cryptonite" = doDistribute super."cryptonite_0_10";
"cryptonite-conduit" = dontDistribute super."cryptonite-conduit";
@@ -2329,6 +2347,7 @@ self: super: {
"data-flags" = dontDistribute super."data-flags";
"data-flagset" = dontDistribute super."data-flagset";
"data-fresh" = dontDistribute super."data-fresh";
+ "data-function-meld" = dontDistribute super."data-function-meld";
"data-interval" = dontDistribute super."data-interval";
"data-ivar" = dontDistribute super."data-ivar";
"data-json-token" = dontDistribute super."data-json-token";
@@ -2450,7 +2469,10 @@ self: super: {
"delta-h" = dontDistribute super."delta-h";
"demarcate" = dontDistribute super."demarcate";
"denominate" = dontDistribute super."denominate";
+ "dependent-map" = doDistribute super."dependent-map_0_2_1_0";
"dependent-state" = dontDistribute super."dependent-state";
+ "dependent-sum" = doDistribute super."dependent-sum_0_3_2_1";
+ "dependent-sum-template" = doDistribute super."dependent-sum-template_0_0_0_4";
"depends" = dontDistribute super."depends";
"dephd" = dontDistribute super."dephd";
"dequeue" = dontDistribute super."dequeue";
@@ -2695,6 +2717,7 @@ self: super: {
"ehs" = dontDistribute super."ehs";
"eibd-client-simple" = dontDistribute super."eibd-client-simple";
"eigen" = dontDistribute super."eigen";
+ "either" = doDistribute super."either_4_4_1";
"eithers" = dontDistribute super."eithers";
"ekg-bosun" = dontDistribute super."ekg-bosun";
"ekg-carbon" = dontDistribute super."ekg-carbon";
@@ -2712,6 +2735,7 @@ self: super: {
"elm-bridge" = doDistribute super."elm-bridge_0_2_1_1";
"elm-build-lib" = dontDistribute super."elm-build-lib";
"elm-compiler" = dontDistribute super."elm-compiler";
+ "elm-export" = dontDistribute super."elm-export";
"elm-get" = dontDistribute super."elm-get";
"elm-init" = dontDistribute super."elm-init";
"elm-make" = dontDistribute super."elm-make";
@@ -2726,6 +2750,7 @@ self: super: {
"email" = dontDistribute super."email";
"email-header" = dontDistribute super."email-header";
"email-postmark" = dontDistribute super."email-postmark";
+ "email-validate-json" = dontDistribute super."email-validate-json";
"email-validator" = dontDistribute super."email-validator";
"embeddock" = dontDistribute super."embeddock";
"embeddock-example" = dontDistribute super."embeddock-example";
@@ -2798,11 +2823,13 @@ self: super: {
"event-list" = dontDistribute super."event-list";
"event-monad" = dontDistribute super."event-monad";
"eventloop" = dontDistribute super."eventloop";
+ "eventsourced" = dontDistribute super."eventsourced";
"eventstore" = doDistribute super."eventstore_0_10_0_2";
"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" = doDistribute super."exact-pi_0_4_1_1";
"exact-real" = doDistribute super."exact-real_0_12_0";
"exception-hierarchy" = dontDistribute super."exception-hierarchy";
"exception-mailer" = dontDistribute super."exception-mailer";
@@ -2851,6 +2878,7 @@ self: super: {
"fadno-braids" = dontDistribute super."fadno-braids";
"failable-list" = dontDistribute super."failable-list";
"failure" = dontDistribute super."failure";
+ "failure-detector" = dontDistribute super."failure-detector";
"fair-predicates" = dontDistribute super."fair-predicates";
"fake-type" = dontDistribute super."fake-type";
"faker" = dontDistribute super."faker";
@@ -3142,6 +3170,7 @@ self: super: {
"generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold";
"generic-maybe" = dontDistribute super."generic-maybe";
"generic-pretty" = dontDistribute super."generic-pretty";
+ "generic-random" = dontDistribute super."generic-random";
"generic-server" = dontDistribute super."generic-server";
"generic-storable" = dontDistribute super."generic-storable";
"generic-tree" = dontDistribute super."generic-tree";
@@ -3167,6 +3196,7 @@ self: super: {
"geohash" = dontDistribute super."geohash";
"geoip2" = dontDistribute super."geoip2";
"geojson" = dontDistribute super."geojson";
+ "geojson-types" = dontDistribute super."geojson-types";
"geom2d" = dontDistribute super."geom2d";
"getemx" = dontDistribute super."getemx";
"getflag" = dontDistribute super."getflag";
@@ -3224,9 +3254,11 @@ self: super: {
"gi-gstbase" = dontDistribute super."gi-gstbase";
"gi-gstvideo" = dontDistribute super."gi-gstvideo";
"gi-gtk" = dontDistribute super."gi-gtk";
+ "gi-gtksource" = dontDistribute super."gi-gtksource";
"gi-javascriptcore" = dontDistribute super."gi-javascriptcore";
"gi-notify" = dontDistribute super."gi-notify";
"gi-pango" = dontDistribute super."gi-pango";
+ "gi-pangocairo" = dontDistribute super."gi-pangocairo";
"gi-poppler" = dontDistribute super."gi-poppler";
"gi-soup" = dontDistribute super."gi-soup";
"gi-vte" = dontDistribute super."gi-vte";
@@ -3462,6 +3494,7 @@ self: super: {
"graphmod" = dontDistribute super."graphmod";
"graphql" = dontDistribute super."graphql";
"graphtype" = dontDistribute super."graphtype";
+ "graphviz" = doDistribute super."graphviz_2999_18_0_2";
"grasp" = dontDistribute super."grasp";
"gray-code" = dontDistribute super."gray-code";
"gray-extended" = dontDistribute super."gray-extended";
@@ -3543,6 +3576,7 @@ self: super: {
"hVOIDP" = dontDistribute super."hVOIDP";
"hXmixer" = dontDistribute super."hXmixer";
"haar" = dontDistribute super."haar";
+ "hablog" = dontDistribute super."hablog";
"hacanon-light" = dontDistribute super."hacanon-light";
"hack" = dontDistribute super."hack";
"hack-contrib" = dontDistribute super."hack-contrib";
@@ -3610,6 +3644,8 @@ self: super: {
"hakyll-agda" = dontDistribute super."hakyll-agda";
"hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates";
"hakyll-contrib" = dontDistribute super."hakyll-contrib";
+ "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv";
+ "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm";
"hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation";
"hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links";
"hakyll-convert" = dontDistribute super."hakyll-convert";
@@ -3825,6 +3861,7 @@ self: super: {
"haxl-amazonka" = dontDistribute super."haxl-amazonka";
"haxl-facebook" = dontDistribute super."haxl-facebook";
"haxparse" = dontDistribute super."haxparse";
+ "haxr" = doDistribute super."haxr_3000_11_1_4";
"haxr-th" = dontDistribute super."haxr-th";
"haxy" = dontDistribute super."haxy";
"hayland" = dontDistribute super."hayland";
@@ -3858,6 +3895,7 @@ self: super: {
"hdbi-postgresql" = dontDistribute super."hdbi-postgresql";
"hdbi-sqlite" = dontDistribute super."hdbi-sqlite";
"hdbi-tests" = dontDistribute super."hdbi-tests";
+ "hdevtools" = doDistribute super."hdevtools_0_1_3_0";
"hdf" = dontDistribute super."hdf";
"hdigest" = dontDistribute super."hdigest";
"hdirect" = dontDistribute super."hdirect";
@@ -3956,6 +3994,7 @@ self: super: {
"hi3status" = dontDistribute super."hi3status";
"hiccup" = dontDistribute super."hiccup";
"hichi" = dontDistribute super."hichi";
+ "hidapi" = doDistribute super."hidapi_0_1_3";
"hieraclus" = dontDistribute super."hieraclus";
"hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams";
"hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions";
@@ -4017,10 +4056,14 @@ self: super: {
"hlbfgsb" = dontDistribute super."hlbfgsb";
"hlcm" = dontDistribute super."hlcm";
"hleap" = dontDistribute super."hleap";
+ "hledger" = doDistribute super."hledger_0_27";
"hledger-chart" = dontDistribute super."hledger-chart";
"hledger-diff" = dontDistribute super."hledger-diff";
"hledger-irr" = dontDistribute super."hledger-irr";
+ "hledger-lib" = doDistribute super."hledger-lib_0_27";
+ "hledger-ui" = doDistribute super."hledger-ui_0_27_3";
"hledger-vty" = dontDistribute super."hledger-vty";
+ "hledger-web" = doDistribute super."hledger-web_0_27";
"hlibBladeRF" = dontDistribute super."hlibBladeRF";
"hlibev" = dontDistribute super."hlibev";
"hlibfam" = dontDistribute super."hlibfam";
@@ -4390,6 +4433,7 @@ self: super: {
"huffman" = dontDistribute super."huffman";
"hugs2yc" = dontDistribute super."hugs2yc";
"hulk" = dontDistribute super."hulk";
+ "human-readable-duration" = doDistribute super."human-readable-duration_0_2_0_0";
"hums" = dontDistribute super."hums";
"hunch" = dontDistribute super."hunch";
"hunit-dejafu" = doDistribute super."hunit-dejafu_0_2_0_0";
@@ -4492,6 +4536,7 @@ self: super: {
"ihaskell-plot" = dontDistribute super."ihaskell-plot";
"ihaskell-widgets" = dontDistribute super."ihaskell-widgets";
"ihttp" = dontDistribute super."ihttp";
+ "ilist" = dontDistribute super."ilist";
"illuminate" = dontDistribute super."illuminate";
"image-type" = dontDistribute super."image-type";
"imagefilters" = dontDistribute super."imagefilters";
@@ -4544,6 +4589,7 @@ self: super: {
"insert-ordered-containers" = dontDistribute super."insert-ordered-containers";
"inserts" = dontDistribute super."inserts";
"inspection-proxy" = dontDistribute super."inspection-proxy";
+ "instance-control" = dontDistribute super."instance-control";
"instant-aeson" = dontDistribute super."instant-aeson";
"instant-bytes" = dontDistribute super."instant-bytes";
"instant-deepseq" = dontDistribute super."instant-deepseq";
@@ -4563,6 +4609,7 @@ self: super: {
"interlude-l" = dontDistribute super."interlude-l";
"intern" = dontDistribute super."intern";
"internetmarke" = dontDistribute super."internetmarke";
+ "intero" = dontDistribute super."intero";
"interpol" = dontDistribute super."interpol";
"interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq";
"interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton";
@@ -4583,6 +4630,7 @@ self: super: {
"ioref-stable" = dontDistribute super."ioref-stable";
"iothread" = dontDistribute super."iothread";
"iotransaction" = dontDistribute super."iotransaction";
+ "ip" = dontDistribute super."ip";
"ip-quoter" = dontDistribute super."ip-quoter";
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
"ipatch" = dontDistribute super."ipatch";
@@ -4691,6 +4739,7 @@ self: super: {
"json-incremental-decoder" = dontDistribute super."json-incremental-decoder";
"json-litobj" = dontDistribute super."json-litobj";
"json-pointer" = dontDistribute super."json-pointer";
+ "json-pointer-aeson" = dontDistribute super."json-pointer-aeson";
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
"json-python" = dontDistribute super."json-python";
"json-qq" = dontDistribute super."json-qq";
@@ -5104,6 +5153,7 @@ self: super: {
"lsystem" = dontDistribute super."lsystem";
"ltk" = dontDistribute super."ltk";
"ltl" = dontDistribute super."ltl";
+ "lua-bc" = dontDistribute super."lua-bc";
"lua-bytecode" = dontDistribute super."lua-bytecode";
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
@@ -5337,6 +5387,7 @@ self: super: {
"monad-gen" = dontDistribute super."monad-gen";
"monad-hash" = dontDistribute super."monad-hash";
"monad-interleave" = dontDistribute super."monad-interleave";
+ "monad-journal" = doDistribute super."monad-journal_0_7_1";
"monad-levels" = dontDistribute super."monad-levels";
"monad-log" = dontDistribute super."monad-log";
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
@@ -5568,6 +5619,7 @@ self: super: {
"network-dns" = dontDistribute super."network-dns";
"network-enumerator" = dontDistribute super."network-enumerator";
"network-fancy" = dontDistribute super."network-fancy";
+ "network-hans" = dontDistribute super."network-hans";
"network-interfacerequest" = dontDistribute super."network-interfacerequest";
"network-ip" = dontDistribute super."network-ip";
"network-metrics" = dontDistribute super."network-metrics";
@@ -5599,6 +5651,7 @@ self: super: {
"nextstep-plist" = dontDistribute super."nextstep-plist";
"nf" = dontDistribute super."nf";
"ngrams-loader" = dontDistribute super."ngrams-loader";
+ "ngx-export" = dontDistribute super."ngx-export";
"niagra" = dontDistribute super."niagra";
"nibblestring" = dontDistribute super."nibblestring";
"nicify" = dontDistribute super."nicify";
@@ -5646,6 +5699,7 @@ self: super: {
"ntp-control" = dontDistribute super."ntp-control";
"null-canvas" = dontDistribute super."null-canvas";
"nullary" = dontDistribute super."nullary";
+ "nullpipe" = dontDistribute super."nullpipe";
"number" = dontDistribute super."number";
"number-length" = dontDistribute super."number-length";
"numbering" = dontDistribute super."numbering";
@@ -5660,6 +5714,7 @@ self: super: {
"numericpeano" = dontDistribute super."numericpeano";
"nums" = dontDistribute super."nums";
"numtype" = dontDistribute super."numtype";
+ "numtype-dk" = doDistribute super."numtype-dk_0_5";
"numtype-tf" = dontDistribute super."numtype-tf";
"nurbs" = dontDistribute super."nurbs";
"nvim-hs" = dontDistribute super."nvim-hs";
@@ -5751,6 +5806,7 @@ self: super: {
"options-time" = dontDistribute super."options-time";
"optparse-declarative" = dontDistribute super."optparse-declarative";
"optparse-generic" = dontDistribute super."optparse-generic";
+ "optparse-helper" = dontDistribute super."optparse-helper";
"orc" = dontDistribute super."orc";
"orchestrate" = dontDistribute super."orchestrate";
"orchid" = dontDistribute super."orchid";
@@ -5768,6 +5824,7 @@ self: super: {
"origami" = dontDistribute super."origami";
"os-release" = dontDistribute super."os-release";
"osc" = dontDistribute super."osc";
+ "oscpacking" = dontDistribute super."oscpacking";
"osm-conduit" = dontDistribute super."osm-conduit";
"osm-download" = dontDistribute super."osm-download";
"oso2pdf" = dontDistribute super."oso2pdf";
@@ -5818,6 +5875,7 @@ self: super: {
"parport" = dontDistribute super."parport";
"parse-dimacs" = dontDistribute super."parse-dimacs";
"parse-help" = dontDistribute super."parse-help";
+ "parsec" = doDistribute super."parsec_3_1_9";
"parsec-extra" = dontDistribute super."parsec-extra";
"parsec-numbers" = dontDistribute super."parsec-numbers";
"parsec-parsers" = dontDistribute super."parsec-parsers";
@@ -6029,6 +6087,7 @@ self: super: {
"polynom" = dontDistribute super."polynom";
"polynomial" = dontDistribute super."polynomial";
"polynomials-bernstein" = dontDistribute super."polynomials-bernstein";
+ "polyparse" = doDistribute super."polyparse_1_11";
"polyseq" = dontDistribute super."polyseq";
"polysoup" = dontDistribute super."polysoup";
"polytypeable" = dontDistribute super."polytypeable";
@@ -6121,6 +6180,7 @@ self: super: {
"primitive-simd" = dontDistribute super."primitive-simd";
"primula-board" = dontDistribute super."primula-board";
"primula-bot" = dontDistribute super."primula-bot";
+ "pringletons" = dontDistribute super."pringletons";
"print-debugger" = dontDistribute super."print-debugger";
"printf-mauke" = dontDistribute super."printf-mauke";
"printf-safe" = dontDistribute super."printf-safe";
@@ -6209,6 +6269,7 @@ self: super: {
"pure-priority-queue" = dontDistribute super."pure-priority-queue";
"pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests";
"pure-zlib" = dontDistribute super."pure-zlib";
+ "pureMD5" = doDistribute super."pureMD5_2_1_2_1";
"purescript" = doDistribute super."purescript_0_7_6_1";
"purescript-bridge" = dontDistribute super."purescript-bridge";
"purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast";
@@ -6377,6 +6438,7 @@ self: super: {
"reenact" = dontDistribute super."reenact";
"reexport-crypto-random" = dontDistribute super."reexport-crypto-random";
"ref" = dontDistribute super."ref";
+ "ref-fd" = doDistribute super."ref-fd_0_4";
"ref-mtl" = dontDistribute super."ref-mtl";
"ref-tf" = dontDistribute super."ref-tf";
"refcount" = dontDistribute super."refcount";
@@ -6390,6 +6452,7 @@ self: super: {
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
+ "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers";
"reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-orphans" = dontDistribute super."reflex-orphans";
@@ -6401,6 +6464,7 @@ self: super: {
"regex-parsec" = dontDistribute super."regex-parsec";
"regex-pderiv" = dontDistribute super."regex-pderiv";
"regex-posix-unittest" = dontDistribute super."regex-posix-unittest";
+ "regex-tdfa" = doDistribute super."regex-tdfa_1_2_1";
"regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes";
"regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter";
"regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest";
@@ -6733,6 +6797,7 @@ self: super: {
"serial" = dontDistribute super."serial";
"serial-test-generators" = dontDistribute super."serial-test-generators";
"serialport" = dontDistribute super."serialport";
+ "serpentine" = dontDistribute super."serpentine";
"serv" = dontDistribute super."serv";
"serv-wai" = dontDistribute super."serv-wai";
"servant" = doDistribute super."servant_0_4_4_7";
@@ -6859,6 +6924,7 @@ self: super: {
"simple-pascal" = dontDistribute super."simple-pascal";
"simple-pipe" = dontDistribute super."simple-pipe";
"simple-rope" = dontDistribute super."simple-rope";
+ "simple-sendfile" = doDistribute super."simple-sendfile_0_2_21";
"simple-server" = dontDistribute super."simple-server";
"simple-sessions" = dontDistribute super."simple-sessions";
"simple-sql-parser" = dontDistribute super."simple-sql-parser";
@@ -6917,6 +6983,7 @@ self: super: {
"smartword" = dontDistribute super."smartword";
"sme" = dontDistribute super."sme";
"smt-lib" = dontDistribute super."smt-lib";
+ "smtLib" = doDistribute super."smtLib_1_0_7";
"smtlib2" = dontDistribute super."smtlib2";
"smtp-mail-ng" = dontDistribute super."smtp-mail-ng";
"smtp2mta" = dontDistribute super."smtp2mta";
@@ -6936,6 +7003,7 @@ self: super: {
"snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic";
"snap-loader-static" = dontDistribute super."snap-loader-static";
"snap-predicates" = dontDistribute super."snap-predicates";
+ "snap-routes" = dontDistribute super."snap-routes";
"snap-testing" = dontDistribute super."snap-testing";
"snap-utils" = dontDistribute super."snap-utils";
"snap-web-routes" = dontDistribute super."snap-web-routes";
@@ -7070,6 +7138,7 @@ self: super: {
"srcinst" = dontDistribute super."srcinst";
"srec" = dontDistribute super."srec";
"sscgi" = dontDistribute super."sscgi";
+ "sscript" = dontDistribute super."sscript";
"ssh" = dontDistribute super."ssh";
"sshd-lint" = dontDistribute super."sshd-lint";
"sshtun" = dontDistribute super."sshtun";
@@ -7126,6 +7195,7 @@ self: super: {
"stm-channelize" = dontDistribute super."stm-channelize";
"stm-chunked-queues" = dontDistribute super."stm-chunked-queues";
"stm-conduit" = doDistribute super."stm-conduit_2_7_0";
+ "stm-containers" = doDistribute super."stm-containers_0_2_10";
"stm-firehose" = dontDistribute super."stm-firehose";
"stm-io-hooks" = dontDistribute super."stm-io-hooks";
"stm-lifted" = dontDistribute super."stm-lifted";
@@ -7187,6 +7257,7 @@ self: super: {
"strptime" = dontDistribute super."strptime";
"structs" = dontDistribute super."structs";
"structural-induction" = dontDistribute super."structural-induction";
+ "structural-traversal" = dontDistribute super."structural-traversal";
"structured-haskell-mode" = dontDistribute super."structured-haskell-mode";
"structured-mongoDB" = dontDistribute super."structured-mongoDB";
"structures" = dontDistribute super."structures";
@@ -7372,6 +7443,7 @@ self: super: {
"terntup" = dontDistribute super."terntup";
"terrahs" = dontDistribute super."terrahs";
"tersmu" = dontDistribute super."tersmu";
+ "test-fixture" = dontDistribute super."test-fixture";
"test-framework-doctest" = dontDistribute super."test-framework-doctest";
"test-framework-golden" = dontDistribute super."test-framework-golden";
"test-framework-program" = dontDistribute super."test-framework-program";
@@ -7417,6 +7489,7 @@ self: super: {
"text-utf7" = dontDistribute super."text-utf7";
"text-xml-generic" = dontDistribute super."text-xml-generic";
"text-xml-qq" = dontDistribute super."text-xml-qq";
+ "text-zipper" = doDistribute super."text-zipper_0_3_1";
"text1" = dontDistribute super."text1";
"textPlot" = dontDistribute super."textPlot";
"textmatetags" = dontDistribute super."textmatetags";
@@ -7432,6 +7505,7 @@ self: super: {
"th-cas" = dontDistribute super."th-cas";
"th-context" = dontDistribute super."th-context";
"th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6";
+ "th-extras" = doDistribute super."th-extras_0_0_0_2";
"th-fold" = dontDistribute super."th-fold";
"th-inline-io-action" = dontDistribute super."th-inline-io-action";
"th-instance-reification" = dontDistribute super."th-instance-reification";
@@ -7472,6 +7546,7 @@ self: super: {
"tictactoe3d" = dontDistribute super."tictactoe3d";
"tidal" = dontDistribute super."tidal";
"tidal-midi" = dontDistribute super."tidal-midi";
+ "tidal-serial" = dontDistribute super."tidal-serial";
"tidal-vis" = dontDistribute super."tidal-vis";
"tie-knot" = dontDistribute super."tie-knot";
"tiempo" = dontDistribute super."tiempo";
@@ -7617,6 +7692,7 @@ self: super: {
"tupleinstances" = dontDistribute super."tupleinstances";
"turing" = dontDistribute super."turing";
"turing-music" = dontDistribute super."turing-music";
+ "turingMachine" = dontDistribute super."turingMachine";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_5";
@@ -7671,6 +7747,7 @@ self: super: {
"type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations";
"type-level-sets" = dontDistribute super."type-level-sets";
"type-level-tf" = dontDistribute super."type-level-tf";
+ "type-list" = doDistribute super."type-list_0_3_0_2";
"type-natural" = dontDistribute super."type-natural";
"type-operators" = dontDistribute super."type-operators";
"type-ord" = dontDistribute super."type-ord";
@@ -7689,6 +7766,7 @@ self: super: {
"typehash" = dontDistribute super."typehash";
"typelevel" = dontDistribute super."typelevel";
"typelevel-tensor" = dontDistribute super."typelevel-tensor";
+ "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_0_0";
"typeof" = dontDistribute super."typeof";
"typeparams" = dontDistribute super."typeparams";
"typesafe-endian" = dontDistribute super."typesafe-endian";
@@ -7901,6 +7979,7 @@ self: super: {
"vintage-basic" = dontDistribute super."vintage-basic";
"vinyl-gl" = dontDistribute super."vinyl-gl";
"vinyl-json" = dontDistribute super."vinyl-json";
+ "vinyl-operational" = dontDistribute super."vinyl-operational";
"vinyl-plus" = dontDistribute super."vinyl-plus";
"vinyl-utils" = dontDistribute super."vinyl-utils";
"vinyl-vectors" = dontDistribute super."vinyl-vectors";
@@ -7919,6 +7998,7 @@ self: super: {
"vrpn" = dontDistribute super."vrpn";
"vte" = dontDistribute super."vte";
"vtegtk3" = dontDistribute super."vtegtk3";
+ "vty" = doDistribute super."vty_5_4_0";
"vty-examples" = dontDistribute super."vty-examples";
"vty-menu" = dontDistribute super."vty-menu";
"vty-ui" = dontDistribute super."vty-ui";
@@ -7973,6 +8053,7 @@ self: super: {
"wai-test" = dontDistribute super."wai-test";
"wai-thrift" = dontDistribute super."wai-thrift";
"wai-throttler" = dontDistribute super."wai-throttler";
+ "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8";
"wait-handle" = dontDistribute super."wait-handle";
"waitfree" = dontDistribute super."waitfree";
"warc" = dontDistribute super."warc";
@@ -8265,6 +8346,7 @@ self: super: {
"yesod-worker" = dontDistribute super."yesod-worker";
"yet-another-logger" = dontDistribute super."yet-another-logger";
"yhccore" = dontDistribute super."yhccore";
+ "yi" = doDistribute super."yi_0_12_4";
"yi-contrib" = dontDistribute super."yi-contrib";
"yi-emacs-colours" = dontDistribute super."yi-emacs-colours";
"yi-gtk" = dontDistribute super."yi-gtk";
@@ -8302,6 +8384,7 @@ self: super: {
"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_4";
"zeroth" = dontDistribute super."zeroth";
"zigbee-znet25" = dontDistribute super."zigbee-znet25";
"zim-parser" = doDistribute super."zim-parser_0_1_0_0";
diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix
index 2fb8e65450f..f143b72215d 100644
--- a/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/pkgs/development/haskell-modules/hackage-packages.nix
@@ -2036,31 +2036,6 @@ self: {
}) {};
"BlogLiterately" = callPackage
- ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs
- , containers, data-default, directory, filepath, HaXml, haxr
- , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc
- , pandoc-citeproc, pandoc-types, parsec, process, split, strict
- , tagsoup, temporary, transformers
- }:
- mkDerivation {
- pname = "BlogLiterately";
- version = "0.8.2.2";
- sha256 = "8542a047940fcccbfca14985d22757f9a034c06103cd587e40744aa53e3adc87";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base blaze-html bool-extras bytestring cmdargs containers
- data-default directory filepath HaXml haxr highlighting-kate
- hscolour HTTP lens mtl pandoc pandoc-citeproc pandoc-types parsec
- process split strict tagsoup temporary transformers
- ];
- executableHaskellDepends = [ base cmdargs ];
- homepage = "http://byorgey.wordpress.com/blogliterately/";
- description = "A tool for posting Haskelly articles to blogs";
- license = "GPL";
- }) {};
-
- "BlogLiterately_0_8_2_3" = callPackage
({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs
, containers, data-default, directory, filepath, HaXml, haxr
, highlighting-kate, hscolour, HTTP, lens, mtl, pandoc
@@ -2083,7 +2058,6 @@ self: {
homepage = "http://byorgey.wordpress.com/blogliterately/";
description = "A tool for posting Haskelly articles to blogs";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"BlogLiterately-diagrams_0_1_4_3" = callPackage
@@ -2324,8 +2298,8 @@ self: {
({ mkDerivation, base, mtl }:
mkDerivation {
pname = "CC-delcont";
- version = "0.2";
- sha256 = "814d54bd23b7caca1ca90661f1ca9fdd727b178447fc2952a7f75f1fe40e872e";
+ version = "0.2.1.0";
+ sha256 = "6c6b36b7bc7d98727307dab460805834456e2bced4b50d413ce81f55a0ec6203";
libraryHaskellDepends = [ base mtl ];
homepage = "http://code.haskell.org/~dolio/CC-delcont";
description = "Delimited continuations and dynamically scoped variables";
@@ -6553,6 +6527,7 @@ self: {
text transformers trifecta unordered-containers vector
];
executableHaskellDepends = [ ansi-wl-pprint base cmdargs ];
+ jailbreak = true;
homepage = "https://github.com/choener/FormalGrammars";
description = "(Context-free) grammars in formal language theory";
license = stdenv.lib.licenses.gpl3;
@@ -6992,7 +6967,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
- "GLURaw" = callPackage
+ "GLURaw_2_0_0_1" = callPackage
({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }:
mkDerivation {
pname = "GLURaw";
@@ -7000,6 +6975,21 @@ self: {
sha256 = "d561b2e170e6048f7f1b18647fa569f28684291e25924b41f169ecfdc281ab40";
libraryHaskellDepends = [ base OpenGLRaw transformers ];
librarySystemDepends = [ freeglut mesa ];
+ jailbreak = true;
+ homepage = "http://www.haskell.org/haskellwiki/Opengl";
+ description = "A raw binding for the OpenGL graphics system";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
+
+ "GLURaw" = callPackage
+ ({ mkDerivation, base, freeglut, mesa, OpenGLRaw, transformers }:
+ mkDerivation {
+ pname = "GLURaw";
+ version = "2.0.0.2";
+ sha256 = "884b3dbefbaabdc66cf8e240d33adb0d491bcf9119e53a7d42b8cf0972df15de";
+ libraryHaskellDepends = [ base OpenGLRaw transformers ];
+ librarySystemDepends = [ freeglut mesa ];
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A raw binding for the OpenGL graphics system";
license = stdenv.lib.licenses.bsd3;
@@ -7103,13 +7093,14 @@ self: {
executableHaskellDepends = [
array base bytestring OpenGLRaw random
];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A binding for the OpenGL Utility Toolkit";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
- "GLUT" = callPackage
+ "GLUT_2_7_0_7" = callPackage
({ mkDerivation, array, base, bytestring, containers, freeglut
, mesa, OpenGL, OpenGLRaw, random, StateVar, transformers
}:
@@ -7126,11 +7117,34 @@ self: {
executableHaskellDepends = [
array base bytestring OpenGLRaw random
];
+ jailbreak = true;
+ homepage = "http://www.haskell.org/haskellwiki/Opengl";
+ description = "A binding for the OpenGL Utility Toolkit";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
+
+ "GLUT" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers, OpenGL
+ , OpenGLRaw, random, StateVar, transformers
+ }:
+ mkDerivation {
+ pname = "GLUT";
+ version = "2.7.0.10";
+ sha256 = "4b11cbf9b7876c0ec14bf0673006bd23e7ffc7d396568987b326a1b706497569";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ array base containers OpenGL StateVar transformers
+ ];
+ executableHaskellDepends = [
+ array base bytestring OpenGLRaw random
+ ];
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A binding for the OpenGL Utility Toolkit";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
- }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;};
+ }) {};
"GLUtil" = callPackage
({ mkDerivation, array, base, bytestring, containers, directory
@@ -7139,8 +7153,8 @@ self: {
}:
mkDerivation {
pname = "GLUtil";
- version = "0.9.0";
- sha256 = "45978efe489c938a0ddf1928a96c956550c08db2d388242a31f86014a2e16e61";
+ version = "0.9.0.1";
+ sha256 = "573a5aca29e64cd2b7610c940235ec43b5a07d9b239fec030d3e3037dc7a1f59";
libraryHaskellDepends = [
array base bytestring containers directory filepath hpp JuicyPixels
linear OpenGL OpenGLRaw transformers vector
@@ -10317,7 +10331,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "HaTeX" = callPackage
+ "HaTeX_3_16_2_0" = callPackage
({ mkDerivation, base, bytestring, containers, matrix, parsec
, QuickCheck, tasty, tasty-quickcheck, text, transformers
, wl-pprint-extras
@@ -10336,6 +10350,28 @@ self: {
homepage = "https://github.com/Daniel-Diaz/HaTeX/blob/master/README.md";
description = "The Haskell LaTeX library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "HaTeX" = callPackage
+ ({ mkDerivation, base, bytestring, containers, matrix, parsec
+ , QuickCheck, tasty, tasty-quickcheck, text, transformers
+ , wl-pprint-extras
+ }:
+ mkDerivation {
+ pname = "HaTeX";
+ version = "3.17.0.1";
+ sha256 = "cebe2465b4e23e98392e044c24a706456acaae90964d34de135f04b76e9197b9";
+ libraryHaskellDepends = [
+ base bytestring containers matrix parsec QuickCheck text
+ transformers wl-pprint-extras
+ ];
+ testHaskellDepends = [
+ base QuickCheck tasty tasty-quickcheck text
+ ];
+ homepage = "https://github.com/Daniel-Diaz/HaTeX/blob/master/README.md";
+ description = "The Haskell LaTeX library";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"HaTeX-meta" = callPackage
@@ -10370,6 +10406,7 @@ self: {
antiquoter base haskell-src-meta HaTeX template-haskell text
uniplate
];
+ jailbreak = true;
description = "Quasiquoters for HaTeX";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -11254,6 +11291,7 @@ self: {
libgraph mtl process RBTree regex-posix template-haskell
threepenny-gui
];
+ jailbreak = true;
homepage = "https://wiki.haskell.org/Hoed";
description = "Lightweight algorithmic debugging";
license = stdenv.lib.licenses.bsd3;
@@ -12510,7 +12548,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "JuicyPixels-repa" = callPackage
+ "JuicyPixels-repa_0_7_0_1" = callPackage
({ mkDerivation, base, bytestring, JuicyPixels, repa, vector }:
mkDerivation {
pname = "JuicyPixels-repa";
@@ -12521,6 +12559,20 @@ self: {
];
description = "Convenience functions to obtain array representations of images";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "JuicyPixels-repa" = callPackage
+ ({ mkDerivation, base, bytestring, JuicyPixels, repa, vector }:
+ mkDerivation {
+ pname = "JuicyPixels-repa";
+ version = "0.7.1.0";
+ sha256 = "b8f11203dd397885fadfd66a03f3720f164fc17f964f3dba6a494afc8411267e";
+ libraryHaskellDepends = [
+ base bytestring JuicyPixels repa vector
+ ];
+ description = "Convenience functions to obtain array representations of images";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"JuicyPixels-scale-dct" = callPackage
@@ -13171,7 +13223,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) ncurses;};
- "LibZip" = callPackage
+ "LibZip_0_10_2" = callPackage
({ mkDerivation, base, bindings-libzip, bytestring, filepath, mtl
, time
}:
@@ -13182,13 +13234,14 @@ self: {
libraryHaskellDepends = [
base bindings-libzip bytestring filepath mtl time
];
+ jailbreak = true;
homepage = "http://bitbucket.org/astanin/hs-libzip/";
description = "Bindings to libzip, a library for manipulating zip archives";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "LibZip_0_11_1" = callPackage
+ "LibZip" = callPackage
({ mkDerivation, base, bindings-libzip, bytestring, directory
, filepath, HUnit, mtl, time, utf8-string
}:
@@ -13203,7 +13256,6 @@ self: {
base bindings-libzip bytestring directory filepath HUnit mtl time
utf8-string
];
- jailbreak = true;
homepage = "http://bitbucket.org/astanin/hs-libzip/";
description = "Bindings to libzip, a library for manipulating zip archives";
license = stdenv.lib.licenses.bsd3;
@@ -13978,7 +14030,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "MissingH" = callPackage
+ "MissingH_1_3_0_1" = callPackage
({ mkDerivation, array, base, containers, directory
, errorcall-eq-instance, filepath, hslogger, HUnit, mtl, network
, old-locale, old-time, parsec, process, QuickCheck, random
@@ -14003,6 +14055,32 @@ self: {
homepage = "http://software.complete.org/missingh";
description = "Large utility library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "MissingH" = callPackage
+ ({ mkDerivation, array, base, containers, directory
+ , errorcall-eq-instance, filepath, hslogger, HUnit, mtl, network
+ , old-locale, old-time, parsec, process, QuickCheck, random
+ , regex-compat, testpack, time, unix
+ }:
+ mkDerivation {
+ pname = "MissingH";
+ version = "1.3.0.2";
+ sha256 = "64b870214f406d83e48fa13f58f9e4ebf8b69ae898c99788d2d0f3ebfed55ab2";
+ libraryHaskellDepends = [
+ array base containers directory filepath hslogger HUnit mtl network
+ old-locale old-time parsec process random regex-compat time unix
+ ];
+ testHaskellDepends = [
+ array base containers directory errorcall-eq-instance filepath
+ hslogger HUnit mtl network old-locale old-time parsec process
+ QuickCheck random regex-compat testpack time unix
+ ];
+ doCheck = false;
+ homepage = "http://software.complete.org/missingh";
+ description = "Large utility library";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"MissingK" = callPackage
@@ -15303,8 +15381,8 @@ self: {
}:
mkDerivation {
pname = "Obsidian";
- version = "0.1.0.0";
- sha256 = "0174c2d414abd166e9e6aea3efea49faeda46a0a142ec116249192488a54ab91";
+ version = "0.4.0.0";
+ sha256 = "b6cfeea9713bb5eeb20a3eeece383e11df2ef78eab10ad2c64e7513603325dd0";
libraryHaskellDepends = [
base containers cuda language-c-quote mainland-pretty mtl
mwc-random process rdtsc text value-supply vector
@@ -15593,6 +15671,26 @@ self: {
base bytestring containers GLURaw ObjectName OpenGLRaw StateVar
text transformers
];
+ jailbreak = true;
+ homepage = "http://www.haskell.org/haskellwiki/Opengl";
+ description = "A binding for the OpenGL graphics system";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "OpenGL_3_0_0_2" = callPackage
+ ({ mkDerivation, base, bytestring, containers, GLURaw, ObjectName
+ , OpenGLRaw, StateVar, text, transformers
+ }:
+ mkDerivation {
+ pname = "OpenGL";
+ version = "3.0.0.2";
+ sha256 = "13ee4a24d7caad61d3b63146be6620b523bde5b79f223c291f9f25ae9fd9681a";
+ libraryHaskellDepends = [
+ base bytestring containers GLURaw ObjectName OpenGLRaw StateVar
+ text transformers
+ ];
+ jailbreak = true;
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A binding for the OpenGL graphics system";
license = stdenv.lib.licenses.bsd3;
@@ -15605,8 +15703,8 @@ self: {
}:
mkDerivation {
pname = "OpenGL";
- version = "3.0.0.2";
- sha256 = "13ee4a24d7caad61d3b63146be6620b523bde5b79f223c291f9f25ae9fd9681a";
+ version = "3.0.1.0";
+ sha256 = "f45c0c65aa31108391d5d86bb65b3e945e0c1102b7d09db4b356c060f3afa2da";
libraryHaskellDepends = [
base bytestring containers GLURaw ObjectName OpenGLRaw StateVar
text transformers
@@ -15691,7 +15789,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) mesa;};
- "OpenGLRaw" = callPackage
+ "OpenGLRaw_3_1_0_0" = callPackage
({ mkDerivation, base, bytestring, containers, fixed, half, mesa
, text, transformers
}:
@@ -15706,6 +15804,24 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Opengl";
description = "A raw binding for the OpenGL graphics system";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) mesa;};
+
+ "OpenGLRaw" = callPackage
+ ({ mkDerivation, base, bytestring, containers, fixed, half, mesa
+ , text, transformers
+ }:
+ mkDerivation {
+ pname = "OpenGLRaw";
+ version = "3.2.0.0";
+ sha256 = "21346bfd1b2b7df9ae97df6f57d81dd03edd57c1965bf5b2befbfffad45229c5";
+ libraryHaskellDepends = [
+ base bytestring containers fixed half text transformers
+ ];
+ librarySystemDepends = [ mesa ];
+ homepage = "http://www.haskell.org/haskellwiki/Opengl";
+ description = "A raw binding for the OpenGL graphics system";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs) mesa;};
@@ -18385,8 +18501,8 @@ self: {
}:
mkDerivation {
pname = "ShellCheck";
- version = "0.4.3";
- sha256 = "df71c303c43ae79846c9f9198a4d4ba2c4c2ee4c06974491d7130fcea0b8efdf";
+ version = "0.4.4";
+ sha256 = "6cc50790d25b6f330037c3612c21460aa75839cc32c65e10ea6b35f9f4488768";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -20944,7 +21060,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "Win32_2_3_1_0" = callPackage
+ "Win32" = callPackage
({ mkDerivation, advapi32, base, bytestring, gdi32, shell32
, shfolder, user32, winmm
}:
@@ -20963,7 +21079,7 @@ self: {
}) {advapi32 = null; gdi32 = null; shell32 = null;
shfolder = null; user32 = null; winmm = null;};
- "Win32" = callPackage
+ "Win32_2_3_1_1" = callPackage
({ mkDerivation, advapi32, base, bytestring, gdi32, shell32
, shfolder, user32, winmm
}:
@@ -21772,6 +21888,7 @@ self: {
libraryHaskellDepends = [
base CC-delcont containers mtl network unix
];
+ jailbreak = true;
homepage = "https://github.com/jkarni/ZipperFS";
description = "Oleg's Zipper FS";
license = stdenv.lib.licenses.publicDomain;
@@ -22332,6 +22449,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "accelerate-typelits" = callPackage
+ ({ mkDerivation, accelerate, accelerate-random, base, HUnit-Plus
+ , mwc-random, QuickCheck, smallcheck, tasty, tasty-hunit
+ , tasty-quickcheck, tasty-smallcheck
+ }:
+ mkDerivation {
+ pname = "accelerate-typelits";
+ version = "0.1.0.0";
+ sha256 = "956e31783b2d6929bc33736af96d528ffbcb8d40bad8a6639496e5fd84c8a120";
+ revision = "2";
+ editedCabalFile = "943e69f04f202c193de0de06d4c70918c2ca8a2f1fa0f9b7cf6e0d501ff196d5";
+ libraryHaskellDepends = [
+ accelerate accelerate-random base mwc-random QuickCheck smallcheck
+ ];
+ testHaskellDepends = [
+ accelerate accelerate-random base HUnit-Plus mwc-random QuickCheck
+ smallcheck tasty tasty-hunit tasty-quickcheck tasty-smallcheck
+ ];
+ description = "a typesafe way encode accelerate matrices and vectors";
+ license = stdenv.lib.licenses.isc;
+ }) {};
+
"accelerate-utility" = callPackage
({ mkDerivation, accelerate, base, utility-ht }:
mkDerivation {
@@ -26008,27 +26147,6 @@ self: {
}) {};
"amazonka" = callPackage
- ({ mkDerivation, amazonka-core, base, bytestring, conduit
- , conduit-extra, directory, exceptions, http-conduit, ini, mmorph
- , monad-control, mtl, resourcet, retry, tasty, tasty-hunit, text
- , time, transformers, transformers-base, transformers-compat
- }:
- mkDerivation {
- pname = "amazonka";
- version = "1.4.0";
- sha256 = "b1822a420e13d253b6f62e096a2a0879aa20e53ab6e2866e95b98ddbee5dec85";
- libraryHaskellDepends = [
- amazonka-core base bytestring conduit conduit-extra directory
- exceptions http-conduit ini mmorph monad-control mtl resourcet
- retry text time transformers transformers-base transformers-compat
- ];
- testHaskellDepends = [ base tasty tasty-hunit ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Comprehensive Amazon Web Services SDK";
- license = "unknown";
- }) {};
-
- "amazonka_1_4_1" = callPackage
({ mkDerivation, amazonka-core, base, bytestring, conduit
, conduit-extra, directory, exceptions, http-conduit, ini, mmorph
, monad-control, mtl, resourcet, retry, tasty, tasty-hunit, text
@@ -26044,11 +26162,9 @@ self: {
retry text time transformers transformers-base transformers-compat
];
testHaskellDepends = [ base tasty tasty-hunit ];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Comprehensive Amazon Web Services SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-apigateway_1_3_7" = callPackage
@@ -26072,24 +26188,6 @@ self: {
}) {};
"amazonka-apigateway" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-apigateway";
- version = "1.4.0";
- sha256 = "0db9b5216d5746d053df9e05217dd19d42623b1ddf3bc1dc33955935730a389c";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon API Gateway SDK";
- license = "unknown";
- }) {};
-
- "amazonka-apigateway_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26102,11 +26200,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon API Gateway SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-autoscaling_0_3_3" = callPackage
@@ -26172,24 +26268,6 @@ self: {
}) {};
"amazonka-autoscaling" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-autoscaling";
- version = "1.4.0";
- sha256 = "ead0e710801c76fb4568dfb80acafba61428a872760191d808d8ff3304e9dcd8";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Auto Scaling SDK";
- license = "unknown";
- }) {};
-
- "amazonka-autoscaling_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26202,32 +26280,12 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Auto Scaling SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-certificatemanager" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-certificatemanager";
- version = "1.4.0";
- sha256 = "9480dd882cb47061f1c1aa14993d70f20d7b888a27ad3d0279afc7488f543a77";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Certificate Manager SDK";
- license = "unknown";
- }) {};
-
- "amazonka-certificatemanager_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26240,11 +26298,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Certificate Manager SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudformation_0_3_3" = callPackage
@@ -26310,24 +26366,6 @@ self: {
}) {};
"amazonka-cloudformation" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudformation";
- version = "1.4.0";
- sha256 = "bbd009ca7de4670690206efd08d0b89e97a05e7c1d7bab50d84f521ceebda927";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon CloudFormation SDK";
- license = "unknown";
- }) {};
-
- "amazonka-cloudformation_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26340,11 +26378,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudFormation SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudfront_0_3_3" = callPackage
@@ -26410,24 +26446,6 @@ self: {
}) {};
"amazonka-cloudfront" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudfront";
- version = "1.4.0";
- sha256 = "a4d75366edd0b0ffb9b33e83de100b0b6b3dc38b1f5632526881cf269d90f0a6";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon CloudFront SDK";
- license = "unknown";
- }) {};
-
- "amazonka-cloudfront_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26440,11 +26458,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudFront SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudhsm_0_3_3" = callPackage
@@ -26510,24 +26526,6 @@ self: {
}) {};
"amazonka-cloudhsm" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudhsm";
- version = "1.4.0";
- sha256 = "0cf44dfce3e233729645d77f5c34bcb93c05b86de6d2993e85d6188c0260d82c";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon CloudHSM SDK";
- license = "unknown";
- }) {};
-
- "amazonka-cloudhsm_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26540,11 +26538,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudHSM SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudsearch_0_3_3" = callPackage
@@ -26610,24 +26606,6 @@ self: {
}) {};
"amazonka-cloudsearch" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudsearch";
- version = "1.4.0";
- sha256 = "ab38b598a56b9711fcdb889b8d4350707e5d6278c7de8d670595eff6eed81f4a";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon CloudSearch SDK";
- license = "unknown";
- }) {};
-
- "amazonka-cloudsearch_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26640,11 +26618,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudSearch SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudsearch-domains_0_3_3" = callPackage
@@ -26710,24 +26686,6 @@ self: {
}) {};
"amazonka-cloudsearch-domains" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudsearch-domains";
- version = "1.4.0";
- sha256 = "25028c168eef469738ccfe68a4badedf3018d889e24a84a51b28874400354cf8";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon CloudSearch Domain SDK";
- license = "unknown";
- }) {};
-
- "amazonka-cloudsearch-domains_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26740,11 +26698,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudSearch Domain SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudtrail_0_3_3" = callPackage
@@ -26810,24 +26766,6 @@ self: {
}) {};
"amazonka-cloudtrail" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudtrail";
- version = "1.4.0";
- sha256 = "29c6efbadddd29f1fb966e24cef7bf680118a1a190b65abe110d7c9bbd7d0428";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon CloudTrail SDK";
- license = "unknown";
- }) {};
-
- "amazonka-cloudtrail_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26840,11 +26778,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudTrail SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudwatch_0_3_3" = callPackage
@@ -26910,24 +26846,6 @@ self: {
}) {};
"amazonka-cloudwatch" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudwatch";
- version = "1.4.0";
- sha256 = "cb60c6624aee9b159f6ed4566c589d5d28566451120b9dab6dddeb39d30f2874";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon CloudWatch SDK";
- license = "unknown";
- }) {};
-
- "amazonka-cloudwatch_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26940,32 +26858,12 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudWatch SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudwatch-events" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudwatch-events";
- version = "1.4.0";
- sha256 = "5cb2ed261e2410cdeefe5bb32bc9b375d3b2a02c04ad0be75c19a9e063f2be6c";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon CloudWatch Events SDK";
- license = "unknown";
- }) {};
-
- "amazonka-cloudwatch-events_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -26978,11 +26876,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudWatch Events SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cloudwatch-logs_0_3_3" = callPackage
@@ -27048,24 +26944,6 @@ self: {
}) {};
"amazonka-cloudwatch-logs" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cloudwatch-logs";
- version = "1.4.0";
- sha256 = "bf66e0c1a2c2fb87ec3afa981b567b7cbb39a92227dc05b4e89e813c08500f4f";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon CloudWatch Logs SDK";
- license = "unknown";
- }) {};
-
- "amazonka-cloudwatch-logs_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27078,11 +26956,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CloudWatch Logs SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-codecommit_1_3_7" = callPackage
@@ -27106,24 +26982,6 @@ self: {
}) {};
"amazonka-codecommit" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-codecommit";
- version = "1.4.0";
- sha256 = "ed0c9e78cbf0d4466f59f4f9b93bc2bd995138f24377e77351841aa11a5cbda0";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon CodeCommit SDK";
- license = "unknown";
- }) {};
-
- "amazonka-codecommit_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27136,11 +26994,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CodeCommit SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-codedeploy_0_3_3" = callPackage
@@ -27206,24 +27062,6 @@ self: {
}) {};
"amazonka-codedeploy" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-codedeploy";
- version = "1.4.0";
- sha256 = "54dcede69badb68d6bd1b0d44ae39a511840305dca9efe7c60cef08a101810e7";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon CodeDeploy SDK";
- license = "unknown";
- }) {};
-
- "amazonka-codedeploy_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27236,11 +27074,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CodeDeploy SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-codepipeline_1_3_7" = callPackage
@@ -27264,24 +27100,6 @@ self: {
}) {};
"amazonka-codepipeline" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-codepipeline";
- version = "1.4.0";
- sha256 = "a285b6ccdb0d653e6da8ccd7347d11f69f75882b28843b51d44e1fd00a759019";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon CodePipeline SDK";
- license = "unknown";
- }) {};
-
- "amazonka-codepipeline_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27294,11 +27112,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon CodePipeline SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cognito-identity_0_3_3" = callPackage
@@ -27364,24 +27180,6 @@ self: {
}) {};
"amazonka-cognito-identity" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cognito-identity";
- version = "1.4.0";
- sha256 = "787e0de095b2f8c2d657091c6cd473816d7e51b8c444ced4057570df14bdaaa4";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Cognito Identity SDK";
- license = "unknown";
- }) {};
-
- "amazonka-cognito-identity_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27394,11 +27192,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Cognito Identity SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-cognito-idp" = callPackage
@@ -27414,7 +27210,6 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Cognito Identity Provider SDK";
license = "unknown";
@@ -27483,24 +27278,6 @@ self: {
}) {};
"amazonka-cognito-sync" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-cognito-sync";
- version = "1.4.0";
- sha256 = "47181614278b6eb836519bdbe34e3a99293a2ae2a1f33dcd1f2278619114fde4";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Cognito Sync SDK";
- license = "unknown";
- }) {};
-
- "amazonka-cognito-sync_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27513,11 +27290,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Cognito Sync SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-config_0_3_3" = callPackage
@@ -27583,24 +27358,6 @@ self: {
}) {};
"amazonka-config" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-config";
- version = "1.4.0";
- sha256 = "083d80c419f5ae269171ba8022300f5366ba83cd653e56a1a5b82b2c45131d5f";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Config SDK";
- license = "unknown";
- }) {};
-
- "amazonka-config_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27613,11 +27370,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Config SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-core_0_3_3" = callPackage
@@ -27751,36 +27506,6 @@ self: {
}) {};
"amazonka-core" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring
- , case-insensitive, conduit, conduit-extra, cryptonite, exceptions
- , hashable, http-conduit, http-types, lens, memory, mtl, QuickCheck
- , quickcheck-unicode, resourcet, scientific, semigroups, tagged
- , tasty, tasty-hunit, tasty-quickcheck, template-haskell, text
- , time, transformers, transformers-compat, unordered-containers
- , xml-conduit, xml-types
- }:
- mkDerivation {
- pname = "amazonka-core";
- version = "1.4.0";
- sha256 = "0001c7e562b35b65c458fadf42ecfb069a6d0fd19d806cd998538f47640996fc";
- libraryHaskellDepends = [
- aeson attoparsec base bifunctors bytestring case-insensitive
- conduit conduit-extra cryptonite exceptions hashable http-conduit
- http-types lens memory mtl resourcet scientific semigroups tagged
- text time transformers transformers-compat unordered-containers
- xml-conduit xml-types
- ];
- testHaskellDepends = [
- aeson base bytestring case-insensitive http-types QuickCheck
- quickcheck-unicode tasty tasty-hunit tasty-quickcheck
- template-haskell text time
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Core data types and functionality for Amazonka libraries";
- license = "unknown";
- }) {};
-
- "amazonka-core_1_4_1" = callPackage
({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring
, case-insensitive, conduit, conduit-extra, cryptonite, deepseq
, exceptions, hashable, http-conduit, http-types, lens, memory, mtl
@@ -27808,7 +27533,6 @@ self: {
homepage = "https://github.com/brendanhay/amazonka";
description = "Core data types and functionality for Amazonka libraries";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-datapipeline_0_3_3" = callPackage
@@ -27874,24 +27598,6 @@ self: {
}) {};
"amazonka-datapipeline" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-datapipeline";
- version = "1.4.0";
- sha256 = "cc3fc5311709e78485fadd429f04c077fab72b73d4be28b6a0d6e8f1a35111f9";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Data Pipeline SDK";
- license = "unknown";
- }) {};
-
- "amazonka-datapipeline_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27904,11 +27610,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Data Pipeline SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-devicefarm_1_3_7" = callPackage
@@ -27932,24 +27636,6 @@ self: {
}) {};
"amazonka-devicefarm" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-devicefarm";
- version = "1.4.0";
- sha256 = "8b1bdbb0ff4778cf5c7f72b5a01509b182b4d90628e640ef0fa6709ce09dbea0";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Device Farm SDK";
- license = "unknown";
- }) {};
-
- "amazonka-devicefarm_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -27962,11 +27648,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Device Farm SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-directconnect_0_3_3" = callPackage
@@ -28032,24 +27716,6 @@ self: {
}) {};
"amazonka-directconnect" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-directconnect";
- version = "1.4.0";
- sha256 = "6450a238d41679b03d02313c8aa01082c516d888723a73f4e2e5f0f83038d783";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Direct Connect SDK";
- license = "unknown";
- }) {};
-
- "amazonka-directconnect_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28062,32 +27728,12 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Direct Connect SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-dms" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-dms";
- version = "1.4.0";
- sha256 = "0473dfb47b3d0896240b7a74ad769ec44e39bfd77a264d64ff1c0b1f0c032392";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Database Migration Service SDK";
- license = "unknown";
- }) {};
-
- "amazonka-dms_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28100,11 +27746,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Database Migration Service SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-ds_1_3_7" = callPackage
@@ -28128,24 +27772,6 @@ self: {
}) {};
"amazonka-ds" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-ds";
- version = "1.4.0";
- sha256 = "8452fa1e22b4be61794fb5dd613468c4c320d1be60a935064eee215a472e1db0";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Directory Service SDK";
- license = "unknown";
- }) {};
-
- "amazonka-ds_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28158,11 +27784,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Directory Service SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-dynamodb_0_3_3" = callPackage
@@ -28228,24 +27852,6 @@ self: {
}) {};
"amazonka-dynamodb" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-dynamodb";
- version = "1.4.0";
- sha256 = "0647f2f6f803996b2e4ac3d7cc991582f1332d458e793afe439e2a260e89914b";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon DynamoDB SDK";
- license = "unknown";
- }) {};
-
- "amazonka-dynamodb_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28258,11 +27864,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon DynamoDB SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-dynamodb-streams_1_3_7" = callPackage
@@ -28286,24 +27890,6 @@ self: {
}) {};
"amazonka-dynamodb-streams" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-dynamodb-streams";
- version = "1.4.0";
- sha256 = "34e548d216e8eec247ae3563fa780fa072e137e1102866ea2f0e43ae5d3c4a59";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon DynamoDB Streams SDK";
- license = "unknown";
- }) {};
-
- "amazonka-dynamodb-streams_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28316,11 +27902,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon DynamoDB Streams SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-ec2_0_3_3" = callPackage
@@ -28406,8 +27990,8 @@ self: {
}:
mkDerivation {
pname = "amazonka-ec2";
- version = "1.4.0";
- sha256 = "dfe0782c39bf6ac20cd60273acaa8008ad5f2572ab5ea4868dcf577f77bdcb80";
+ version = "1.4.1";
+ sha256 = "677a49261781900b757307b5ab5714862016f777d12d246536a30c9806e9f6bf";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
@@ -28419,45 +28003,7 @@ self: {
license = "unknown";
}) {};
- "amazonka-ec2_1_4_1" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-ec2";
- version = "1.4.1";
- sha256 = "677a49261781900b757307b5ab5714862016f777d12d246536a30c9806e9f6bf";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- jailbreak = true;
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Elastic Compute Cloud SDK";
- license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"amazonka-ecr" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-ecr";
- version = "1.4.0";
- sha256 = "868774dc8cd8d0ef020a1166e92bf3430b3a2746c7467b911e7824981da9862f";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon EC2 Container Registry SDK";
- license = "unknown";
- }) {};
-
- "amazonka-ecr_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28470,11 +28016,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon EC2 Container Registry SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-ecs_0_3_3" = callPackage
@@ -28540,24 +28084,6 @@ self: {
}) {};
"amazonka-ecs" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-ecs";
- version = "1.4.0";
- sha256 = "38b5a174e2835095eab92e0352202744f9cca05f33350518de9bf8ef77416cdb";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon EC2 Container Service SDK";
- license = "unknown";
- }) {};
-
- "amazonka-ecs_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28570,11 +28096,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon EC2 Container Service SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-efs_1_3_7" = callPackage
@@ -28598,24 +28122,6 @@ self: {
}) {};
"amazonka-efs" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-efs";
- version = "1.4.0";
- sha256 = "f175a1b7c34225bf09983035e047d8ed4c6510c2aa9ce9fa3e7db6bd791ae713";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Elastic File System SDK";
- license = "unknown";
- }) {};
-
- "amazonka-efs_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28628,11 +28134,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic File System SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-elasticache_0_3_3" = callPackage
@@ -28698,24 +28202,6 @@ self: {
}) {};
"amazonka-elasticache" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-elasticache";
- version = "1.4.0";
- sha256 = "d2006ef83242d723c83bf44e33d4160e65316fdbf8756ef03167f11ec133e55b";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon ElastiCache SDK";
- license = "unknown";
- }) {};
-
- "amazonka-elasticache_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28728,11 +28214,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon ElastiCache SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-elasticbeanstalk_0_3_3" = callPackage
@@ -28798,24 +28282,6 @@ self: {
}) {};
"amazonka-elasticbeanstalk" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-elasticbeanstalk";
- version = "1.4.0";
- sha256 = "b83c1eb2797c3106c168323c698224ae3825b47482d321c8240b017d1e6d0d11";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Elastic Beanstalk SDK";
- license = "unknown";
- }) {};
-
- "amazonka-elasticbeanstalk_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28828,11 +28294,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic Beanstalk SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-elasticsearch_1_3_7" = callPackage
@@ -28856,24 +28320,6 @@ self: {
}) {};
"amazonka-elasticsearch" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-elasticsearch";
- version = "1.4.0";
- sha256 = "717e01030f814e813103a2a2822d8f0de4fb1228806cdad1fc8282fb2b954df0";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Elasticsearch Service SDK";
- license = "unknown";
- }) {};
-
- "amazonka-elasticsearch_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28886,11 +28332,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elasticsearch Service SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-elastictranscoder_0_3_3" = callPackage
@@ -28956,24 +28400,6 @@ self: {
}) {};
"amazonka-elastictranscoder" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-elastictranscoder";
- version = "1.4.0";
- sha256 = "24d6288da5bfb182a2bf93ae30dfcd3411ca77ad65f7481336038a895161ff3a";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Elastic Transcoder SDK";
- license = "unknown";
- }) {};
-
- "amazonka-elastictranscoder_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -28986,11 +28412,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic Transcoder SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-elb_0_3_3" = callPackage
@@ -29056,24 +28480,6 @@ self: {
}) {};
"amazonka-elb" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-elb";
- version = "1.4.0";
- sha256 = "96a8724d1d57c4e5428b5dc8c37f281942b8d71e555f28d458b0e10d2596425a";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Elastic Load Balancing SDK";
- license = "unknown";
- }) {};
-
- "amazonka-elb_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29086,11 +28492,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic Load Balancing SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-emr_0_3_3" = callPackage
@@ -29156,24 +28560,6 @@ self: {
}) {};
"amazonka-emr" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-emr";
- version = "1.4.0";
- sha256 = "91fff413f9c29fdd7508dd3d3266af44cf622fd0779daf8d139d714368bbe0c3";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Elastic MapReduce SDK";
- license = "unknown";
- }) {};
-
- "amazonka-emr_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29186,32 +28572,12 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Elastic MapReduce SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-gamelift" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-gamelift";
- version = "1.4.0";
- sha256 = "042fb93fd5afe3508974d3eaf8b4207d2ebb4cdd3c9b03d1e88c7743d98af2e4";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon GameLift SDK";
- license = "unknown";
- }) {};
-
- "amazonka-gamelift_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29224,11 +28590,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon GameLift SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-glacier_0_3_3" = callPackage
@@ -29294,24 +28658,6 @@ self: {
}) {};
"amazonka-glacier" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-glacier";
- version = "1.4.0";
- sha256 = "40e0655b3ff4a800e16067e5169e27915ad85a7f88a5fafc05da81d015807299";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Glacier SDK";
- license = "unknown";
- }) {};
-
- "amazonka-glacier_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29324,11 +28670,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Glacier SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-iam_0_3_3" = callPackage
@@ -29394,24 +28738,6 @@ self: {
}) {};
"amazonka-iam" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-iam";
- version = "1.4.0";
- sha256 = "0b2b0448b510008265630e9f446a8bd902e7b7aa0082d16beb44947767b242b1";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Identity and Access Management SDK";
- license = "unknown";
- }) {};
-
- "amazonka-iam_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29424,11 +28750,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Identity and Access Management SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-importexport_0_3_3" = callPackage
@@ -29494,24 +28818,6 @@ self: {
}) {};
"amazonka-importexport" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-importexport";
- version = "1.4.0";
- sha256 = "8f7151dc995efd7e4fd431e334747aa32162cdbea3b2801a4546a8835e0b5890";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Import/Export SDK";
- license = "unknown";
- }) {};
-
- "amazonka-importexport_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29524,11 +28830,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Import/Export SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-inspector_1_3_7" = callPackage
@@ -29552,24 +28856,6 @@ self: {
}) {};
"amazonka-inspector" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-inspector";
- version = "1.4.0";
- sha256 = "ec30d3990a60a48052d602afc72c7e68c328221d1d6091a32ec34bc5cbbdd3a8";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Inspector SDK";
- license = "unknown";
- }) {};
-
- "amazonka-inspector_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29582,11 +28868,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Inspector SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-iot_1_3_7" = callPackage
@@ -29610,24 +28894,6 @@ self: {
}) {};
"amazonka-iot" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-iot";
- version = "1.4.0";
- sha256 = "1de4267169ad51c49cf580a7b0adc2012a752f029eb7304b0d54bb794d06144c";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon IoT SDK";
- license = "unknown";
- }) {};
-
- "amazonka-iot_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29640,11 +28906,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon IoT SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-iot-dataplane_1_3_7" = callPackage
@@ -29668,24 +28932,6 @@ self: {
}) {};
"amazonka-iot-dataplane" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-iot-dataplane";
- version = "1.4.0";
- sha256 = "a1d211e4c4aa712853b57f2f2b684b0f84354d7fde659b8d76b6e7e4346b934b";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon IoT Data Plane SDK";
- license = "unknown";
- }) {};
-
- "amazonka-iot-dataplane_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29698,11 +28944,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon IoT Data Plane SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-kinesis_0_3_3" = callPackage
@@ -29768,24 +29012,6 @@ self: {
}) {};
"amazonka-kinesis" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-kinesis";
- version = "1.4.0";
- sha256 = "616c6686de7ea7c11aee5d27bf91ff6034de2e2b0439b97be936b9541bb4c4e2";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Kinesis SDK";
- license = "unknown";
- }) {};
-
- "amazonka-kinesis_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29798,11 +29024,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Kinesis SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-kinesis-firehose_1_3_7" = callPackage
@@ -29826,24 +29050,6 @@ self: {
}) {};
"amazonka-kinesis-firehose" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-kinesis-firehose";
- version = "1.4.0";
- sha256 = "effcb460fb24ba7efa6236e7a5f2b590df7e56ca335f5f8a03e454f063b2738a";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Kinesis Firehose SDK";
- license = "unknown";
- }) {};
-
- "amazonka-kinesis-firehose_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29856,11 +29062,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Kinesis Firehose SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-kms_0_3_3" = callPackage
@@ -29926,24 +29130,6 @@ self: {
}) {};
"amazonka-kms" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-kms";
- version = "1.4.0";
- sha256 = "ad32894e1a75ab0af4142dc82a8518ad1926267824a373860ac7258088ddd6b0";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Key Management Service SDK";
- license = "unknown";
- }) {};
-
- "amazonka-kms_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -29956,11 +29142,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Key Management Service SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-lambda_0_3_3" = callPackage
@@ -30026,24 +29210,6 @@ self: {
}) {};
"amazonka-lambda" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-lambda";
- version = "1.4.0";
- sha256 = "19b9c73538267eaaea661bc9bc3b88cfbefde4ba0d43b307eb7d0d3ec457618f";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Lambda SDK";
- license = "unknown";
- }) {};
-
- "amazonka-lambda_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30056,11 +29222,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Lambda SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-marketplace-analytics_1_3_7" = callPackage
@@ -30084,24 +29248,6 @@ self: {
}) {};
"amazonka-marketplace-analytics" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-marketplace-analytics";
- version = "1.4.0";
- sha256 = "e51d718ee9ca998a4563cfca375f8be5a617009e65b486afafcbca191efb425e";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Marketplace Commerce Analytics SDK";
- license = "unknown";
- }) {};
-
- "amazonka-marketplace-analytics_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30114,32 +29260,12 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Marketplace Commerce Analytics SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-marketplace-metering" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-marketplace-metering";
- version = "1.4.0";
- sha256 = "33d765f729c127cd474012395e0cf98a6dd0e2ed22c9d6adb6adedf0b001d856";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Marketplace Metering SDK";
- license = "unknown";
- }) {};
-
- "amazonka-marketplace-metering_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30152,11 +29278,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Marketplace Metering SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-ml_0_3_6" = callPackage
@@ -30194,24 +29318,6 @@ self: {
}) {};
"amazonka-ml" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-ml";
- version = "1.4.0";
- sha256 = "f333580d48a6c65b3e019f620758fc1407be75edc01e6f2d9fc690a2852e883c";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Machine Learning SDK";
- license = "unknown";
- }) {};
-
- "amazonka-ml_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30224,11 +29330,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Machine Learning SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-opsworks_0_3_3" = callPackage
@@ -30294,24 +29398,6 @@ self: {
}) {};
"amazonka-opsworks" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-opsworks";
- version = "1.4.0";
- sha256 = "e5c85a070a7ead1447bf31482dfb0149d15c38b6dc0bc48e8690ceb1eac9076d";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon OpsWorks SDK";
- license = "unknown";
- }) {};
-
- "amazonka-opsworks_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30324,11 +29410,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon OpsWorks SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-rds_0_3_3" = callPackage
@@ -30399,8 +29483,8 @@ self: {
}:
mkDerivation {
pname = "amazonka-rds";
- version = "1.4.0";
- sha256 = "7846b510b312cadb76b49374d8fdc199698cb696ed8bcc118043c079ac1ddd84";
+ version = "1.4.1";
+ sha256 = "6c4443c56b947b6b60e4dcfa84390f35f081d7bd3e80f2e5d8bcecb49be3e045";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
@@ -30412,26 +29496,6 @@ self: {
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {};
- "amazonka-rds_1_4_1" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-rds";
- version = "1.4.1";
- sha256 = "6c4443c56b947b6b60e4dcfa84390f35f081d7bd3e80f2e5d8bcecb49be3e045";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- jailbreak = true;
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Relational Database Service SDK";
- license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"amazonka-redshift_0_3_3" = callPackage
({ mkDerivation, amazonka-core, base }:
mkDerivation {
@@ -30495,24 +29559,6 @@ self: {
}) {};
"amazonka-redshift" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-redshift";
- version = "1.4.0";
- sha256 = "a92f1b58416098f623d83b66cb3b0e09c3505fe10675d6cffb1ee8f14a22ed9a";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Redshift SDK";
- license = "unknown";
- }) {};
-
- "amazonka-redshift_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30525,11 +29571,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Redshift SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-route53_0_3_3" = callPackage
@@ -30609,24 +29653,6 @@ self: {
}) {};
"amazonka-route53" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-route53";
- version = "1.4.0";
- sha256 = "a547fd8c2c8736e06f8e3473ed7ed344f4304c6cb869288ec7173791d6ad9687";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Route 53 SDK";
- license = "unknown";
- }) {};
-
- "amazonka-route53_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30639,11 +29665,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Route 53 SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-route53-domains_0_3_3" = callPackage
@@ -30709,24 +29733,6 @@ self: {
}) {};
"amazonka-route53-domains" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-route53-domains";
- version = "1.4.0";
- sha256 = "7a3a3cb640e95cfb33fb7d26c170ab7cd994664927e836f7556230b8393665e5";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Route 53 Domains SDK";
- license = "unknown";
- }) {};
-
- "amazonka-route53-domains_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30739,11 +29745,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Route 53 Domains SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-s3_0_3_3" = callPackage
@@ -30815,8 +29819,8 @@ self: {
}:
mkDerivation {
pname = "amazonka-s3";
- version = "1.4.0";
- sha256 = "db50ccae296972a98c7d4de2a9c618c2e9d2d0f2b8cd66befdebde0971414538";
+ version = "1.4.1";
+ sha256 = "8ecb8988afbebc6f43b3d011a8a81536d2e49863aeb6f912b29d7170be920831";
libraryHaskellDepends = [ amazonka-core base lens text ];
testHaskellDepends = [
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
@@ -30828,26 +29832,6 @@ self: {
license = "unknown";
}) {};
- "amazonka-s3_1_4_1" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , lens, tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-s3";
- version = "1.4.1";
- sha256 = "8ecb8988afbebc6f43b3d011a8a81536d2e49863aeb6f912b29d7170be920831";
- libraryHaskellDepends = [ amazonka-core base lens text ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- jailbreak = true;
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Simple Storage Service SDK";
- license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"amazonka-sdb_0_3_3" = callPackage
({ mkDerivation, amazonka-core, base }:
mkDerivation {
@@ -30911,24 +29895,6 @@ self: {
}) {};
"amazonka-sdb" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-sdb";
- version = "1.4.0";
- sha256 = "aebe7ba2ba8492bace5d04971a4164735a26c8f3b99520d516a93d2c4f9f199b";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon SimpleDB SDK";
- license = "unknown";
- }) {};
-
- "amazonka-sdb_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -30941,11 +29907,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon SimpleDB SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-ses_0_3_3" = callPackage
@@ -31011,24 +29975,6 @@ self: {
}) {};
"amazonka-ses" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-ses";
- version = "1.4.0";
- sha256 = "0823d15557f3895bf904439334fd9f705aa06329ec8f4a81abad9298c178acdd";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Simple Email Service SDK";
- license = "unknown";
- }) {};
-
- "amazonka-ses_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31041,11 +29987,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Simple Email Service SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-sns_0_3_3" = callPackage
@@ -31111,24 +30055,6 @@ self: {
}) {};
"amazonka-sns" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-sns";
- version = "1.4.0";
- sha256 = "d51e054d16a57a199148275cdf80d48e11d6f53c7588e690aad6b36ade3cc9df";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Simple Notification Service SDK";
- license = "unknown";
- }) {};
-
- "amazonka-sns_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31141,11 +30067,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Simple Notification Service SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-sqs_0_3_3" = callPackage
@@ -31216,8 +30140,8 @@ self: {
}:
mkDerivation {
pname = "amazonka-sqs";
- version = "1.4.0";
- sha256 = "dc4d463865e0ec9bffd5f1dc8822fff3a4c7feef68457e7191107a5af951c624";
+ version = "1.4.1";
+ sha256 = "a0c05964c0e72538b79713a438d4af22ae407f5af3de0156d54362afd076db59";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
@@ -31229,26 +30153,6 @@ self: {
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {};
- "amazonka-sqs_1_4_1" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-sqs";
- version = "1.4.1";
- sha256 = "a0c05964c0e72538b79713a438d4af22ae407f5af3de0156d54362afd076db59";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- jailbreak = true;
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Simple Queue Service SDK";
- license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"amazonka-ssm_0_3_3" = callPackage
({ mkDerivation, amazonka-core, base }:
mkDerivation {
@@ -31312,24 +30216,6 @@ self: {
}) {};
"amazonka-ssm" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-ssm";
- version = "1.4.0";
- sha256 = "13e840b86ac7c158b7a6188ca62f2b3f1805a472ebbeadc3504d5f9dc28f0430";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Simple Systems Management Service SDK";
- license = "unknown";
- }) {};
-
- "amazonka-ssm_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31342,11 +30228,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Simple Systems Management Service SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-storagegateway_0_3_3" = callPackage
@@ -31412,24 +30296,6 @@ self: {
}) {};
"amazonka-storagegateway" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-storagegateway";
- version = "1.4.0";
- sha256 = "a731304356de28567f23d1fdeeb53d0dbcd73a3cf44f02a6967a49d4799f1445";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Storage Gateway SDK";
- license = "unknown";
- }) {};
-
- "amazonka-storagegateway_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31442,11 +30308,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Storage Gateway SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-sts_0_3_3" = callPackage
@@ -31512,24 +30376,6 @@ self: {
}) {};
"amazonka-sts" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-sts";
- version = "1.4.0";
- sha256 = "f44862dd66f380419d208bdcf153d5d1a030df0390eafaff846799ffa6062bee";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Security Token Service SDK";
- license = "unknown";
- }) {};
-
- "amazonka-sts_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31542,11 +30388,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Security Token Service SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-support_0_3_3" = callPackage
@@ -31612,24 +30456,6 @@ self: {
}) {};
"amazonka-support" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-support";
- version = "1.4.0";
- sha256 = "7cac8c6886e278c8304f8551ef850355295411f50e58ead6ff50ef75c44e40dd";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Support SDK";
- license = "unknown";
- }) {};
-
- "amazonka-support_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31642,11 +30468,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon Support SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-swf_0_3_3" = callPackage
@@ -31718,8 +30542,8 @@ self: {
}:
mkDerivation {
pname = "amazonka-swf";
- version = "1.4.0";
- sha256 = "fd968d74aa6767067623bfed0ef172d9d8417083695d1863a9f24c4a733588b2";
+ version = "1.4.1";
+ sha256 = "96bb747a87dc3938a076179e478d6eb52215ba593edd1c2178b660b983acb9c3";
libraryHaskellDepends = [ amazonka-core base ];
testHaskellDepends = [
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
@@ -31731,26 +30555,6 @@ self: {
license = "unknown";
}) {};
- "amazonka-swf_1_4_1" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-swf";
- version = "1.4.1";
- sha256 = "96bb747a87dc3938a076179e478d6eb52215ba593edd1c2178b660b983acb9c3";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- jailbreak = true;
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon Simple Workflow Service SDK";
- license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"amazonka-test_1_3_7" = callPackage
({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring
, case-insensitive, conduit, conduit-extra, groom, http-client
@@ -31776,28 +30580,6 @@ self: {
}) {};
"amazonka-test" = callPackage
- ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring
- , case-insensitive, conduit, conduit-extra, groom, http-client
- , http-types, process, resourcet, tasty, tasty-hunit
- , template-haskell, temporary, text, time, unordered-containers
- , yaml
- }:
- mkDerivation {
- pname = "amazonka-test";
- version = "1.4.0";
- sha256 = "b9a9e1892660e210bfe46fca3ee1cba518baa97c79a63036e38c4cc9e50d25a4";
- libraryHaskellDepends = [
- aeson amazonka-core base bifunctors bytestring case-insensitive
- conduit conduit-extra groom http-client http-types process
- resourcet tasty tasty-hunit template-haskell temporary text time
- unordered-containers yaml
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Common functionality for Amazonka library test-suites";
- license = "unknown";
- }) {};
-
- "amazonka-test_1_4_1" = callPackage
({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring
, case-insensitive, conduit, conduit-extra, groom, http-client
, http-types, process, resourcet, tasty, tasty-hunit
@@ -31814,11 +30596,9 @@ self: {
resourcet tasty tasty-hunit template-haskell temporary text time
unordered-containers yaml
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Common functionality for Amazonka library test-suites";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-waf_1_3_7" = callPackage
@@ -31842,24 +30622,6 @@ self: {
}) {};
"amazonka-waf" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-waf";
- version = "1.4.0";
- sha256 = "b07d07d1f489edbfb6e8ca82131276eaaa078bd726bf59d12deb5789b1dc81cb";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon WAF SDK";
- license = "unknown";
- }) {};
-
- "amazonka-waf_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31872,11 +30634,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon WAF SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"amazonka-workspaces_0_3_6" = callPackage
@@ -31914,24 +30674,6 @@ self: {
}) {};
"amazonka-workspaces" = callPackage
- ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
- , tasty, tasty-hunit, text, time, unordered-containers
- }:
- mkDerivation {
- pname = "amazonka-workspaces";
- version = "1.4.0";
- sha256 = "a88bb14573f71fa8f8d9c3e21f014f0ae4a79e1931996b218902f500c205206d";
- libraryHaskellDepends = [ amazonka-core base ];
- testHaskellDepends = [
- amazonka-core amazonka-test base bytestring tasty tasty-hunit text
- time unordered-containers
- ];
- homepage = "https://github.com/brendanhay/amazonka";
- description = "Amazon WorkSpaces SDK";
- license = "unknown";
- }) {};
-
- "amazonka-workspaces_1_4_1" = callPackage
({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
, tasty, tasty-hunit, text, time, unordered-containers
}:
@@ -31944,11 +30686,9 @@ self: {
amazonka-core amazonka-test base bytestring tasty tasty-hunit text
time unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/brendanhay/amazonka";
description = "Amazon WorkSpaces SDK";
license = "unknown";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"ampersand" = callPackage
@@ -32987,8 +31727,8 @@ self: {
}:
mkDerivation {
pname = "apiary";
- version = "2.0.1.1";
- sha256 = "dd804df65c6ffc9f3bdd8994dd39668796e54e424b6a140bd7577551e7220554";
+ version = "2.0.2";
+ sha256 = "b9a08995b45d7b9bbea2239a417ce0409c5c36515cda412fdc62f8e64e9bb594";
libraryHaskellDepends = [
aeson base blaze-builder blaze-html blaze-markup bytestring
bytestring-read case-insensitive data-default-class exceptions
@@ -34702,6 +33442,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "ascii-flatten" = callPackage
+ ({ mkDerivation, base, text }:
+ mkDerivation {
+ pname = "ascii-flatten";
+ version = "0.1.1.0";
+ sha256 = "6b561658a8d7eb1737374eece298cf49dc773ca4a5b93c3c4df11e60d9ed6fcd";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base ];
+ executableHaskellDepends = [ base text ];
+ homepage = "https://github.com/danchoi/ascii-flatten";
+ description = "Flattens European non-ASCII characaters into ASCII";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"ascii-progress_0_3_2_0" = callPackage
({ mkDerivation, async, base, concurrent-output, data-default
, hspec, QuickCheck, time
@@ -35596,7 +34351,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "atomic-primops" = callPackage
+ "atomic-primops_0_8_0_3" = callPackage
({ mkDerivation, base, ghc-prim, primitive }:
mkDerivation {
pname = "atomic-primops";
@@ -35606,9 +34361,10 @@ self: {
homepage = "https://github.com/rrnewton/haskell-lockfree/wiki";
description = "A safe approach to CAS and other atomic ops in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "atomic-primops_0_8_0_4" = callPackage
+ "atomic-primops" = callPackage
({ mkDerivation, base, ghc-prim, primitive }:
mkDerivation {
pname = "atomic-primops";
@@ -35618,7 +34374,6 @@ self: {
homepage = "https://github.com/rrnewton/haskell-lockfree/wiki";
description = "A safe approach to CAS and other atomic ops in Haskell";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"atomic-primops-foreign" = callPackage
@@ -35662,8 +34417,8 @@ self: {
}:
mkDerivation {
pname = "atomic-write";
- version = "0.2.0.4";
- sha256 = "891bf2cf364bae578fe74d320324d635850865b6fa887cfe9fb4b9b0bbdf09f8";
+ version = "0.2.0.5";
+ sha256 = "dbc7b4c31c734ad12d8f6c05b5d1384ee57f50ad8ff1a703d560b39e2f0458c5";
libraryHaskellDepends = [
base bytestring directory filepath temporary text unix-compat
];
@@ -36221,7 +34976,6 @@ self: {
aeson base http-client http-client-tls mtl servant servant-client
text transformers
];
- jailbreak = true;
homepage = "https://github.com/fosskers/haskell-aur";
description = "Access metadata from the Arch Linux User Repository";
license = stdenv.lib.licenses.gpl3;
@@ -36463,7 +35217,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "auto-update" = callPackage
+ "auto-update_0_1_3_1" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "auto-update";
@@ -36473,9 +35227,10 @@ self: {
homepage = "https://github.com/yesodweb/wai";
description = "Efficiently run periodic, on-demand actions";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "auto-update_0_1_4" = callPackage
+ "auto-update" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "auto-update";
@@ -36485,7 +35240,6 @@ self: {
homepage = "https://github.com/yesodweb/wai";
description = "Efficiently run periodic, on-demand actions";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"autoexporter" = callPackage
@@ -36527,13 +35281,14 @@ self: {
}:
mkDerivation {
pname = "automotive-cse";
- version = "0.1.3.0";
- sha256 = "71b59c50b29748ae5991d53af5a7bed6ee283942e1df69c0b3c9da8107d06b9c";
+ version = "0.1.8.0";
+ sha256 = "6d13185816e92bc6bd146030525c19980ceb1c12887b08e93fa46b7a9fb9db71";
libraryHaskellDepends = [
base bytestring bytestring-short cereal cryptonite memory
];
testHaskellDepends = [
- base bytestring cryptonite QuickCheck quickcheck-simple
+ base bytestring bytestring-short cryptonite QuickCheck
+ quickcheck-simple
];
description = "Automotive CSE emulation";
license = stdenv.lib.licenses.bsd3;
@@ -36785,6 +35540,7 @@ self: {
aeson avers base bytestring cookie http-api-data servant text time
vector
];
+ doHaddock = false;
homepage = "http://github.com/wereHamster/avers-api";
description = "Types describing the core and extended Avers APIs";
license = stdenv.lib.licenses.mit;
@@ -36868,8 +35624,8 @@ self: {
}:
mkDerivation {
pname = "avers-server";
- version = "0.0.4";
- sha256 = "5d3d28135e20af8c92fd5b36ff4336b2858ac595b3eed3f33458a57f1c19ad4d";
+ version = "0.0.5";
+ sha256 = "c72bd19a4f46c733875c887a0efcc7340f9c5b4571a5f74773d3d835297b2176";
libraryHaskellDepends = [
aeson avers avers-api base base64-bytestring bytestring
bytestring-conversion containers cookie cryptohash either
@@ -39272,7 +38028,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "basic-prelude" = callPackage
+ "basic-prelude_0_5_1" = callPackage
({ mkDerivation, base, bytestring, containers, filepath, hashable
, lifted-base, ReadArgs, safe, text, transformers
, unordered-containers, vector
@@ -39288,6 +38044,25 @@ self: {
homepage = "https://github.com/snoyberg/basic-prelude";
description = "An enhanced core prelude; a common foundation for alternate preludes";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "basic-prelude" = callPackage
+ ({ mkDerivation, base, bytestring, containers, filepath, hashable
+ , lifted-base, ReadArgs, safe, text, transformers
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "basic-prelude";
+ version = "0.5.2";
+ sha256 = "96666a0ddd6b12eaa4d172cf76e0a4b3846da49d96a2b68d627e949ea7c75752";
+ libraryHaskellDepends = [
+ base bytestring containers filepath hashable lifted-base ReadArgs
+ safe text transformers unordered-containers vector
+ ];
+ homepage = "https://github.com/snoyberg/basic-prelude";
+ description = "An enhanced core prelude; a common foundation for alternate preludes";
+ license = stdenv.lib.licenses.mit;
}) {};
"basic-sop" = callPackage
@@ -41586,7 +40361,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {v4l2 = null;};
- "bindings-libzip" = callPackage
+ "bindings-libzip_0_10_2" = callPackage
({ mkDerivation, base, bindings-DSL, libzip }:
mkDerivation {
pname = "bindings-libzip";
@@ -41600,7 +40375,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) libzip;};
- "bindings-libzip_0_11" = callPackage
+ "bindings-libzip" = callPackage
({ mkDerivation, base, bindings-DSL, libzip }:
mkDerivation {
pname = "bindings-libzip";
@@ -42362,6 +41137,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "bitcoin-payment-channel" = callPackage
+ ({ mkDerivation, base, base16-bytestring, base58string, binary
+ , bytestring, cereal, haskoin-core, hexstring, text, time
+ }:
+ mkDerivation {
+ pname = "bitcoin-payment-channel";
+ version = "0.1.0.0";
+ sha256 = "f474aab5245a31c50916c39f20ad674b624dba42c4059ff0be03c263da73f148";
+ libraryHaskellDepends = [
+ base base16-bytestring base58string binary bytestring cereal
+ haskoin-core hexstring text time
+ ];
+ homepage = "https://github.com/runeksvendsen/bitcoin-payment-channel";
+ description = "Library for working with Bitcoin payment channels";
+ license = stdenv.lib.licenses.publicDomain;
+ }) {};
+
"bitcoin-rpc" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, cereal
, containers, ghc-prim, HTTP, HUnit, mtl, network, QuickCheck
@@ -42687,8 +41479,8 @@ self: {
}:
mkDerivation {
pname = "bitvec";
- version = "0.1.0.1";
- sha256 = "048343cd7a5a77261b67722c3b0d4ca7da159712e0642a72968fbd7eb138ef7d";
+ version = "0.1.0.2";
+ sha256 = "62be501c4b407dff41c4faaecfd74b9eba6ae87f7d5de98339097b79f9b84995";
libraryHaskellDepends = [ base primitive vector ];
testHaskellDepends = [
base HUnit primitive QuickCheck test-framework test-framework-hunit
@@ -42735,8 +41527,8 @@ self: {
}:
mkDerivation {
pname = "bitx-bitcoin";
- version = "0.7.0.2";
- sha256 = "f86b55294f029255a5329137b3f075daf495a1f7f462aed66ac273f368985d02";
+ version = "0.8.0.0";
+ sha256 = "6df64f668a4949fe3efc5f695efef7e05edb6b6d47559ae1a95d5355eee62dd2";
libraryHaskellDepends = [
aeson base bytestring http-client http-client-tls http-types
microlens microlens-th network QuickCheck scientific split text
@@ -43008,8 +41800,8 @@ self: {
}:
mkDerivation {
pname = "blatex";
- version = "0.1.0.8";
- sha256 = "461a3fd0f9052a2eedbb635bcc5b45020ed78535c4be3bef02dced9192951cb6";
+ version = "0.1.0.9";
+ sha256 = "b449673cae228ce4b761b5a4c3ae72aa04e1e90c14770b2488ebedccc51a2aa0";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -44746,23 +43538,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "brick_0_5_1" = callPackage
+ "brick_0_6_2" = callPackage
({ mkDerivation, base, containers, contravariant, data-default
- , deepseq, lens, template-haskell, text, text-zipper, transformers
- , vector, vty
+ , deepseq, microlens, microlens-th, template-haskell, text
+ , text-zipper, transformers, vector, vty
}:
mkDerivation {
pname = "brick";
- version = "0.5.1";
- sha256 = "eb3d43ecd16ac14da9846941ea834ebb99bbfc2f95008dc109b3fa2fef7d9d8d";
+ version = "0.6.2";
+ sha256 = "1441b889d60eb9f2f17b5f44a98bcdaaa32f81bc6302a55bbabd4a62be882d74";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base containers contravariant data-default deepseq lens
- template-haskell text text-zipper transformers vector vty
+ base containers contravariant data-default deepseq microlens
+ microlens-th template-haskell text text-zipper transformers vector
+ vty
];
executableHaskellDepends = [
- base data-default lens text vector vty
+ base data-default microlens microlens-th text vector vty
];
homepage = "https://github.com/jtdaugherty/brick/";
description = "A declarative terminal user interface library";
@@ -45079,7 +43872,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "buffer-builder" = callPackage
+ "buffer-builder_0_2_4_1" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, criterion
, deepseq, HTF, mtl, quickcheck-instances, text
, unordered-containers, vector
@@ -45098,6 +43891,28 @@ self: {
homepage = "https://github.com/chadaustin/buffer-builder";
description = "Library for efficiently building up buffers, one piece at a time";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "buffer-builder" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion
+ , deepseq, HTF, mtl, quickcheck-instances, text
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "buffer-builder";
+ version = "0.2.4.2";
+ sha256 = "23e353fe4afb0a8cd4514b29c66ffcfff93098220a13441e8372d575cf1b1104";
+ libraryHaskellDepends = [
+ base bytestring mtl text unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson attoparsec base bytestring criterion deepseq HTF
+ quickcheck-instances text vector
+ ];
+ homepage = "https://github.com/chadaustin/buffer-builder";
+ description = "Library for efficiently building up buffers, one piece at a time";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {};
@@ -45743,17 +44558,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "bytestring_0_10_8_0" = callPackage
+ "bytestring_0_10_8_1" = callPackage
({ mkDerivation, base, byteorder, deepseq, directory, dlist
, ghc-prim, HUnit, integer-gmp, mtl, QuickCheck, random
, test-framework, test-framework-hunit, test-framework-quickcheck2
}:
mkDerivation {
pname = "bytestring";
- version = "0.10.8.0";
- sha256 = "1d57175b5b0f7da1c1d43e8875fcc2a5bbcfbdadde2a19e59d975233dc751819";
- revision = "1";
- editedCabalFile = "288cc7c21a637c83679d5aae751916befefa8ed26811bf6975f076bf7b3cb01f";
+ version = "0.10.8.1";
+ sha256 = "2d615f5b4cd76251663ea67355589742950590bf766e487961fbfc816e58fc9b";
libraryHaskellDepends = [ base deepseq ghc-prim integer-gmp ];
testHaskellDepends = [
base byteorder deepseq directory dlist ghc-prim HUnit mtl
@@ -45851,6 +44664,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "bytestring-builder_0_10_8_1_0" = callPackage
+ ({ mkDerivation, base, bytestring, deepseq }:
+ mkDerivation {
+ pname = "bytestring-builder";
+ version = "0.10.8.1.0";
+ sha256 = "6d7404773621efb88b256ff88912a7dbcebc7fb86d27868ef58478249892dbc2";
+ libraryHaskellDepends = [ base bytestring deepseq ];
+ doHaddock = false;
+ description = "The new bytestring builder, packaged outside of GHC";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"bytestring-class" = callPackage
({ mkDerivation, base, bytestring, utf8-string }:
mkDerivation {
@@ -46718,7 +45544,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "cabal-debian" = callPackage
+ "cabal-debian_4_32_3" = callPackage
({ mkDerivation, ansi-wl-pprint, base, bifunctors, Cabal
, containers, data-default, debian, deepseq, Diff, directory
, exceptions, filepath, hsemail, HUnit, lens, memoize, mtl
@@ -46750,14 +45576,49 @@ self: {
homepage = "https://github.com/ddssff/cabal-debian";
description = "Create a Debianization for a Cabal package";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "cabal-debian" = callPackage
+ ({ mkDerivation, ansi-wl-pprint, base, bifunctors, Cabal
+ , containers, data-default, debian, deepseq, Diff, directory
+ , exceptions, filepath, hsemail, HUnit, lens, memoize, mtl
+ , network-uri, newtype-generics, optparse-applicative, parsec
+ , pretty, process, pureMD5, regex-tdfa, set-extra, syb, text, unix
+ , Unixutils, utf8-string
+ }:
+ mkDerivation {
+ pname = "cabal-debian";
+ version = "4.32.4";
+ sha256 = "25e34804e438d5299f2a4d02b39b41878a733586dd527caa45ac29f7c33ca3c7";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ ansi-wl-pprint base bifunctors Cabal containers data-default debian
+ deepseq Diff directory exceptions filepath hsemail HUnit lens
+ memoize mtl network-uri newtype-generics optparse-applicative
+ parsec pretty process pureMD5 regex-tdfa set-extra syb text unix
+ Unixutils utf8-string
+ ];
+ executableHaskellDepends = [
+ base Cabal debian lens mtl pretty Unixutils
+ ];
+ testHaskellDepends = [
+ base Cabal containers debian Diff directory filepath hsemail HUnit
+ lens pretty process text
+ ];
+ doCheck = false;
+ homepage = "https://github.com/ddssff/cabal-debian";
+ description = "Create a Debianization for a Cabal package";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"cabal-dependency-licenses" = callPackage
({ mkDerivation, base, Cabal, containers, directory, filepath }:
mkDerivation {
pname = "cabal-dependency-licenses";
- version = "0.1.1.2";
- sha256 = "87355a19bc2b02050a629607cb847a8e51064e614e23bd7dde9861f2518cb91c";
+ version = "0.1.2.0";
+ sha256 = "436a3d8745d6645cac1b51f54974f38811fbc37a3784ac0bdba3c3ddb22f2494";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -46953,15 +45814,15 @@ self: {
license = stdenv.lib.licenses.agpl3;
}) {};
- "cabal-helper_0_7_0_1" = callPackage
+ "cabal-helper_0_7_1_0" = callPackage
({ mkDerivation, base, bytestring, Cabal, cabal-install, directory
, extra, filepath, ghc-prim, mtl, process, template-haskell
, temporary, transformers, unix, utf8-string
}:
mkDerivation {
pname = "cabal-helper";
- version = "0.7.0.1";
- sha256 = "4c158f81ad325a0b2bfd5bfec149851f59837fd73775c8b4da0050bdeca0182d";
+ version = "0.7.1.0";
+ sha256 = "7c78b875b5f246b8422b641923d2ffe593bf65ce9e99373e19ef8372df8db66f";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -49049,7 +47910,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "carray" = callPackage
+ "carray_0_1_6_3" = callPackage
({ mkDerivation, array, base, binary, bytestring, ix-shapable
, QuickCheck, syb
}:
@@ -49063,6 +47924,23 @@ self: {
testHaskellDepends = [ array base ix-shapable QuickCheck ];
description = "A C-compatible array library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "carray" = callPackage
+ ({ mkDerivation, array, base, binary, bytestring, ix-shapable
+ , QuickCheck, syb
+ }:
+ mkDerivation {
+ pname = "carray";
+ version = "0.1.6.4";
+ sha256 = "52964f076e8f03051f2af5e5cd6e450860dd1623ed67549a9f12f318d6c00c50";
+ libraryHaskellDepends = [
+ array base binary bytestring ix-shapable QuickCheck syb
+ ];
+ testHaskellDepends = [ array base ix-shapable QuickCheck ];
+ description = "A C-compatible array library";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"cartel_0_14_2_6" = callPackage
@@ -49496,8 +48374,8 @@ self: {
}:
mkDerivation {
pname = "casr-logbook";
- version = "0.0.4";
- sha256 = "9c0942ed3905dc6d6fc2e65a171c826f9de33b7df72f897a8e94fdf854d02f95";
+ version = "0.0.7";
+ sha256 = "600acd86109323bbf47ee9449b45565c44350330ca1ff08113ce3e669d92a7ad";
libraryHaskellDepends = [ base containers ];
testHaskellDepends = [
base directory doctest filepath QuickCheck template-haskell
@@ -50773,8 +49651,8 @@ self: {
({ mkDerivation, array, base, process, random }:
mkDerivation {
pname = "chalmers-lava2000";
- version = "1.6";
- sha256 = "243d3b25635eb16700723a1250f8db52c5493d56bb16144537dedb0e776e01f8";
+ version = "1.6.1";
+ sha256 = "ebe5152611cdf34269942bf61c9e009596ec5c15ed797f89d5f9854f00ba9c89";
libraryHaskellDepends = [ array base process random ];
homepage = "http://projects.haskell.org/chalmers-lava2000/Doc/tutorial.pdf";
description = "Hardware description EDSL";
@@ -51853,7 +50731,6 @@ self: {
aeson base http-client http-client-tls mtl servant servant-client
text time transformers unordered-containers
];
- jailbreak = true;
homepage = "https://github.com/denisshevchenko/circlehs";
description = "The CircleCI REST API for Haskell";
license = stdenv.lib.licenses.mit;
@@ -54767,6 +53644,24 @@ self: {
license = "unknown";
}) {};
+ "cloben" = callPackage
+ ({ mkDerivation, base, foldl, process, system-filepath, temporary
+ , text, turtle
+ }:
+ mkDerivation {
+ pname = "cloben";
+ version = "0.1.0.1";
+ sha256 = "99cfae53ed2ad5db9d1d1860b1654b28ab5189437fd5abb298a432f8a98d4728";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base foldl process system-filepath temporary text turtle
+ ];
+ homepage = "http://github.com/sgraf812/cloben#readme";
+ description = "Clone and benchmark Haskell cabal projects";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"clock_0_4_1_3" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -55423,8 +54318,8 @@ self: {
({ mkDerivation, array, base, bytestring, text }:
mkDerivation {
pname = "cndict";
- version = "0.7.4";
- sha256 = "1d066c7df8e3f789a1139fbed618c4fe633f4f4cc42e30198f80042f93b06c43";
+ version = "0.7.5";
+ sha256 = "e543fd14b60dd1fece431f4ac85bfd86dce5267af646312691e2e015ef182b24";
libraryHaskellDepends = [ array base bytestring text ];
homepage = "https://github.com/Lemmih/cndict";
description = "Chinese/Mandarin <-> English dictionary, Chinese lexer";
@@ -57854,12 +56749,12 @@ self: {
({ mkDerivation, base, conduit, vector }:
mkDerivation {
pname = "conduit-audio";
- version = "0.2.0.1";
- sha256 = "7feb6d81fcafd3853cff73d63f86c68cd4fb67baa97c37410a607b79d8dfc02b";
+ version = "0.2.0.2";
+ sha256 = "e23cf60d1e70a65560308517db79ba150456fcf9f24a0d77f5e6f96cdf1aef0b";
libraryHaskellDepends = [ base conduit vector ];
homepage = "http://github.com/mtolly/conduit-audio";
description = "Combinators to efficiently slice and dice audio streams";
- license = "LGPL";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"conduit-audio-lame" = callPackage
@@ -57868,8 +56763,8 @@ self: {
}:
mkDerivation {
pname = "conduit-audio-lame";
- version = "0.1.1";
- sha256 = "aac3760ea6325219903e0726b4a8e0b9662699ed34a77a0d2a09a5bef67c8d7f";
+ version = "0.1.2";
+ sha256 = "07bbd0c82daff28e9b4dd147cee0cbca5ee74a50bdc5de5a5d905a8848573a5d";
libraryHaskellDepends = [
base bytestring conduit conduit-audio resourcet transformers vector
];
@@ -57877,7 +56772,7 @@ self: {
libraryToolDepends = [ c2hs ];
homepage = "http://github.com/mtolly/conduit-audio";
description = "conduit-audio interface to the LAME MP3 library";
- license = "LGPL";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {mp3lame = null;};
@@ -57887,8 +56782,8 @@ self: {
}:
mkDerivation {
pname = "conduit-audio-samplerate";
- version = "0.1.0.1";
- sha256 = "03b2ce7a89b0ae9a6db7464d1066596d7784bb5d7e45458a6b9fc6600e6726cf";
+ version = "0.1.0.2";
+ sha256 = "e8ee6621926909df05f91f969e95a2bde85d0fe09f17d54ea8fa2a6ff93adedd";
libraryHaskellDepends = [
base conduit conduit-audio resourcet transformers vector
];
@@ -57896,7 +56791,7 @@ self: {
libraryToolDepends = [ c2hs ];
homepage = "http://github.com/mtolly/conduit-audio";
description = "conduit-audio interface to the libsamplerate resampling library";
- license = "LGPL";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {samplerate = null;};
@@ -57906,15 +56801,15 @@ self: {
}:
mkDerivation {
pname = "conduit-audio-sndfile";
- version = "0.1.1";
- sha256 = "2c4288d60fa0ea8a629ab3e3e77ee813e849f4454b006ab75ebc33bf707be4cc";
+ version = "0.1.2";
+ sha256 = "7e499e45b4e7c92e02ce8dc52a4c482b05f2fc611bd46ac868aea8190e53fae6";
libraryHaskellDepends = [
base conduit conduit-audio hsndfile hsndfile-vector resourcet
transformers
];
homepage = "http://github.com/mtolly/conduit-audio";
description = "conduit-audio interface to the libsndfile audio file library";
- license = "LGPL";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
@@ -58704,6 +57599,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "config-value-getopt" = callPackage
+ ({ mkDerivation, base, config-value, text }:
+ mkDerivation {
+ pname = "config-value-getopt";
+ version = "0.1.0.0";
+ sha256 = "00b65bcf60b26f7004665f183d7114dfb6380230c2f50e093403ca8a74bfaccb";
+ libraryHaskellDepends = [ base config-value text ];
+ homepage = "https://github.com/GaloisInc/config-value-getopt";
+ description = "Interface between config-value and System.GetOpt";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"configifier" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, bytestring
, case-insensitive, containers, directory, either, functor-infix
@@ -58801,7 +57708,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "configurator-export" = callPackage
+ "configurator-export_0_1_0_0" = callPackage
({ mkDerivation, base, configurator, pretty, semigroups, text
, unordered-containers
}:
@@ -58816,9 +57723,10 @@ self: {
homepage = "http://github.com/mstksg/configurator-export";
description = "Pretty printer and exporter for configurations from the \"configurator\" library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "configurator-export_0_1_0_1" = callPackage
+ "configurator-export" = callPackage
({ mkDerivation, base, base-compat, configurator, pretty
, semigroups, text, unordered-containers
}:
@@ -58834,7 +57742,6 @@ self: {
homepage = "http://github.com/mstksg/configurator-export";
description = "Pretty printer and exporter for configurations from the \"configurator\" library";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"confsolve" = callPackage
@@ -59316,6 +58223,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "container-builder" = callPackage
+ ({ mkDerivation, base, vector }:
+ mkDerivation {
+ pname = "container-builder";
+ version = "0.1";
+ sha256 = "279fc326fa7e013d41203828591b70dbd316eca2010e9f01bebdfa6186539cee";
+ libraryHaskellDepends = [ base vector ];
+ homepage = "https://github.com/andrewthad/container-builder#readme";
+ description = "Functions for building containers from a known number of elements";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"container-classes" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -61518,25 +60437,27 @@ self: {
}) {};
"craze" = callPackage
- ({ mkDerivation, async, base, bytestring, curl, data-default-class
- , doctest, doctest-discover, haxy, hspec, hspec-discover, HTTP
- , http-types, optparse-generic, text, transformers
+ ({ mkDerivation, async, base, bytestring, containers, curl
+ , data-default-class, doctest, doctest-discover, haxy, hspec
+ , hspec-discover, HTTP, http-types, optparse-generic, text
+ , transformers
}:
mkDerivation {
pname = "craze";
- version = "0.0.1.1";
- sha256 = "7580164fe2534d8af70d9ccbbc429fbf2d72cee63f7992b7c174f9a264bc1631";
+ version = "0.1.1.0";
+ sha256 = "9fcffba5a76aba13be1fbb05971724ac291c95328019d1836309f99fa78fb2c8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- async base bytestring curl data-default-class transformers
+ async base bytestring containers curl data-default-class text
+ transformers
];
executableHaskellDepends = [
base bytestring curl optparse-generic text transformers
];
testHaskellDepends = [
base bytestring curl doctest doctest-discover haxy hspec
- hspec-discover HTTP http-types transformers
+ hspec-discover HTTP http-types text transformers
];
homepage = "https://github.com/etcinit/craze#readme";
description = "HTTP Racing Library";
@@ -61941,8 +60862,8 @@ self: {
}:
mkDerivation {
pname = "cron";
- version = "0.4.0";
- sha256 = "023916c844787d40466044d8ae9af9d77da18840f1f7531fb5f8508b01a1e7b5";
+ version = "0.4.1";
+ sha256 = "452844b046a28a898eef5d27d9d4f172bfd5369e44a2961598d625f677a3cd3c";
libraryHaskellDepends = [
attoparsec base mtl mtl-compat old-locale semigroups text time
];
@@ -62535,33 +61456,53 @@ self: {
}) {};
"cryptohash-md5" = callPackage
- ({ mkDerivation, base, bytestring, tasty, tasty-hunit
- , tasty-quickcheck
+ ({ mkDerivation, base, base16-bytestring, bytestring, pureMD5
+ , tasty, tasty-hunit, tasty-quickcheck
}:
mkDerivation {
pname = "cryptohash-md5";
- version = "0.11.7.1";
- sha256 = "c6e64cb9278403f6c6cdd435f6b612da4f4aca1cc2e687f6773d054c48dbb271";
+ version = "0.11.100.0";
+ sha256 = "b78cb2469b247aa1ac5c828e510506eaca57340eb84882e71147bbfd5ec9581d";
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
- base bytestring tasty tasty-hunit tasty-quickcheck
+ base base16-bytestring bytestring pureMD5 tasty tasty-hunit
+ tasty-quickcheck
];
homepage = "https://github.com/hvr/cryptohash-md5";
description = "Fast, pure and practical MD5 implementation";
license = stdenv.lib.licenses.bsd3;
}) {};
+ "cryptohash-sha1" = callPackage
+ ({ mkDerivation, base, base16-bytestring, bytestring, SHA, tasty
+ , tasty-hunit, tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "cryptohash-sha1";
+ version = "0.11.100.0";
+ sha256 = "24a6853f180ec505a44a6b93bd9272d4ac5e21dca254d89176bce4147dfafecf";
+ libraryHaskellDepends = [ base bytestring ];
+ testHaskellDepends = [
+ base base16-bytestring bytestring SHA tasty tasty-hunit
+ tasty-quickcheck
+ ];
+ homepage = "https://github.com/hvr/cryptohash-sha1";
+ description = "Fast, pure and practical SHA-1 implementation";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"cryptohash-sha256" = callPackage
- ({ mkDerivation, base, bytestring, tasty, tasty-hunit
- , tasty-quickcheck
+ ({ mkDerivation, base, base16-bytestring, bytestring, SHA, tasty
+ , tasty-hunit, tasty-quickcheck
}:
mkDerivation {
pname = "cryptohash-sha256";
- version = "0.11.7.1";
- sha256 = "ac42b0d863dfd91e1b77f513d371f73e31cb93c1677130ff63a3bf20c41a8bc0";
+ version = "0.11.100.0";
+ sha256 = "d4ec71b168f3600226cb53ac43559eb5795d5d79904a910c26046c360d60d780";
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
- base bytestring tasty tasty-hunit tasty-quickcheck
+ base base16-bytestring bytestring SHA tasty tasty-hunit
+ tasty-quickcheck
];
homepage = "https://github.com/hvr/cryptohash-sha256";
description = "Fast, pure and practical SHA-256 implementation";
@@ -63729,8 +62670,8 @@ self: {
}:
mkDerivation {
pname = "d3d11binding";
- version = "0.0.0.6";
- sha256 = "7e5fe934403cd83f94b97d539863ad26df6f0de67d4f291dcabeaaabe7462252";
+ version = "0.0.0.7";
+ sha256 = "1f94c0d93b1446602198d7483f7cbf008d51a9dd65dd4a27758ae62e22ba9668";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base c-storable-deriving vect Win32 ];
@@ -65122,6 +64063,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "data-function-meld" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "data-function-meld";
+ version = "0.1.0.0";
+ sha256 = "def6126edb5aaeb808b8acb34f694c9ce3966f66ddac62a5ba09cf28378e1bcf";
+ revision = "1";
+ editedCabalFile = "7c644b5b5aba58028446255e1bfbf2e2aa832aa27fd3de943d34b047537ec4c9";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/erisco/data-function-meld";
+ description = "Map the arguments and return value of functions";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"data-hash" = callPackage
({ mkDerivation, array, base, containers, QuickCheck
, test-framework, test-framework-quickcheck2
@@ -66926,25 +65881,6 @@ self: {
}) {};
"declarative" = callPackage
- ({ mkDerivation, base, hasty-hamiltonian, lens, mcmc-types
- , mighty-metropolis, mwc-probability, pipes, primitive
- , speedy-slice, transformers
- }:
- mkDerivation {
- pname = "declarative";
- version = "0.2.1";
- sha256 = "7e4996de092e39fb310e9ea0eeb8a85a16c4f0ce92d8ec73b653374f07a2ecd4";
- libraryHaskellDepends = [
- base hasty-hamiltonian lens mcmc-types mighty-metropolis
- mwc-probability pipes primitive speedy-slice transformers
- ];
- testHaskellDepends = [ base mwc-probability ];
- homepage = "http://github.com/jtobin/declarative";
- description = "DIY Markov Chains";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "declarative_0_2_2" = callPackage
({ mkDerivation, base, hasty-hamiltonian, lens, mcmc-types
, mighty-metropolis, mwc-probability, pipes, primitive
, speedy-slice, transformers
@@ -66961,7 +65897,6 @@ self: {
homepage = "http://github.com/jtobin/declarative";
description = "DIY Markov Chains";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"decode-utf8" = callPackage
@@ -67617,7 +66552,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "dependent-map" = callPackage
+ "dependent-map_0_2_1_0" = callPackage
({ mkDerivation, base, containers, dependent-sum }:
mkDerivation {
pname = "dependent-map";
@@ -67627,6 +66562,19 @@ self: {
homepage = "https://github.com/mokus0/dependent-map";
description = "Dependent finite maps (partial dependent products)";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "dependent-map" = callPackage
+ ({ mkDerivation, base, containers, dependent-sum }:
+ mkDerivation {
+ pname = "dependent-map";
+ version = "0.2.2.0";
+ sha256 = "f4d79312f2a584de265339f5a2ca0bfbd1d6383fb24560ca9148f7559727871f";
+ libraryHaskellDepends = [ base containers dependent-sum ];
+ homepage = "https://github.com/mokus0/dependent-map";
+ description = "Dependent finite maps (partial dependent products)";
+ license = "unknown";
}) {};
"dependent-state" = callPackage
@@ -67655,7 +66603,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "dependent-sum" = callPackage
+ "dependent-sum_0_3_2_1" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "dependent-sum";
@@ -67665,6 +66613,35 @@ self: {
homepage = "https://github.com/mokus0/dependent-sum";
description = "Dependent sum type";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "dependent-sum" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "dependent-sum";
+ version = "0.3.2.2";
+ sha256 = "34fbe4675fa3a6ea7ca34913954657a3defee785bd39d55cffcf375f4a3cf864";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/mokus0/dependent-sum";
+ description = "Dependent sum type";
+ license = stdenv.lib.licenses.publicDomain;
+ }) {};
+
+ "dependent-sum-template_0_0_0_4" = callPackage
+ ({ mkDerivation, base, dependent-sum, template-haskell, th-extras
+ }:
+ mkDerivation {
+ pname = "dependent-sum-template";
+ version = "0.0.0.4";
+ sha256 = "99dfc6913a688d714d95b1a2d723ca9c7d54c4d169c0fae63d2fb7c1ffef7280";
+ libraryHaskellDepends = [
+ base dependent-sum template-haskell th-extras
+ ];
+ homepage = "/dev/null";
+ description = "Template Haskell code to generate instances of classes in dependent-sum package";
+ license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dependent-sum-template" = callPackage
@@ -67672,8 +66649,8 @@ self: {
}:
mkDerivation {
pname = "dependent-sum-template";
- version = "0.0.0.4";
- sha256 = "99dfc6913a688d714d95b1a2d723ca9c7d54c4d169c0fae63d2fb7c1ffef7280";
+ version = "0.0.0.5";
+ sha256 = "b23f584da3a5d8bc3b625a186ab696bed5a8a63d71129485b9fb49262a600765";
libraryHaskellDepends = [
base dependent-sum template-haskell th-extras
];
@@ -71134,6 +70111,7 @@ self: {
version = "0.13.0.1";
sha256 = "26ee806eaded39629ac7610209bdcc1106432e36b780592a2d5d813bb57fc7b2";
libraryHaskellDepends = [ base numtype time ];
+ jailbreak = true;
homepage = "http://dimensional.googlecode.com/";
description = "Statically checked physical dimensions";
license = stdenv.lib.licenses.bsd3;
@@ -71147,6 +70125,7 @@ self: {
version = "0.13.0.2";
sha256 = "9762c214f036891299a766aa2e294d1295ec81e4ba806d0e5bb6cf80114928be";
libraryHaskellDepends = [ base numtype time ];
+ jailbreak = true;
homepage = "http://dimensional.googlecode.com/";
description = "Statically checked physical dimensions";
license = stdenv.lib.licenses.bsd3;
@@ -71169,6 +70148,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "dimensional_1_0_1_2" = callPackage
+ ({ mkDerivation, base, deepseq, exact-pi, HUnit, numtype-dk, vector
+ }:
+ mkDerivation {
+ pname = "dimensional";
+ version = "1.0.1.2";
+ sha256 = "45943c0d8989a5ce8a440e40a28b4bffa84170b5c8cfaa9af27d4ce0afc599cb";
+ libraryHaskellDepends = [
+ base deepseq exact-pi numtype-dk vector
+ ];
+ testHaskellDepends = [ base HUnit ];
+ homepage = "https://github.com/bjornbm/dimensional/";
+ description = "Statically checked physical dimensions, using Type Families and Data Kinds";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"dimensional-codata" = callPackage
({ mkDerivation, base, dimensional, numtype-dk }:
mkDerivation {
@@ -71538,8 +70534,8 @@ self: {
}:
mkDerivation {
pname = "directory-listing-webpage-parser";
- version = "0.1.0.0";
- sha256 = "03b5f5d9180784a2d9ba481f09b9cc503b1dfbc10a747e6eebd12e9f6338e4cf";
+ version = "0.1.1.0";
+ sha256 = "9a5ccdaa4b4c747e07bb189096db626934782a8ceb8f86076f5b662ec49d670a";
libraryHaskellDepends = [
base bytestring network-uri tagsoup text time
];
@@ -72894,6 +71890,8 @@ self: {
pname = "dixi";
version = "0.6.9.1";
sha256 = "938923def44d17f193907edc2e928fe63eeca685dd9f5527c791718e3e8e6c6a";
+ revision = "1";
+ editedCabalFile = "1165d61068ddfdb1f480130f9aefc110505e0514484014fe4f3b69ecdd8e1b61";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -76105,7 +75103,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "either" = callPackage
+ "either_4_4_1" = callPackage
({ mkDerivation, base, bifunctors, exceptions, free, mmorph
, monad-control, MonadRandom, mtl, profunctors, semigroupoids
, semigroups, transformers, transformers-base
@@ -76122,9 +75120,10 @@ self: {
homepage = "http://github.com/ekmett/either/";
description = "An either monad transformer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "either_4_4_1_1" = callPackage
+ "either" = callPackage
({ mkDerivation, base, bifunctors, exceptions, free, mmorph
, monad-control, MonadRandom, mtl, profunctors, semigroupoids
, semigroups, transformers, transformers-base
@@ -76141,7 +75140,6 @@ self: {
homepage = "http://github.com/ekmett/either/";
description = "An either monad transformer";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"either-unwrap" = callPackage
@@ -76684,6 +75682,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "elm-export" = callPackage
+ ({ mkDerivation, base, bytestring, containers, directory, hspec
+ , hspec-core, mtl, QuickCheck, quickcheck-instances, text, time
+ }:
+ mkDerivation {
+ pname = "elm-export";
+ version = "0.3.0.2";
+ sha256 = "f89797336f6a8d2d54e1015fabc0ab3f45e8ef8a3b7d7419694dd8144fb5a646";
+ libraryHaskellDepends = [
+ base bytestring containers directory mtl text time
+ ];
+ testHaskellDepends = [
+ base bytestring containers hspec hspec-core QuickCheck
+ quickcheck-instances text time
+ ];
+ homepage = "http://github.com/krisajenkins/elm-export";
+ description = "A library to generate Elm types from Haskell source";
+ license = "unknown";
+ }) {};
+
"elm-get" = callPackage
({ mkDerivation, aeson, aeson-pretty, ansi-wl-pprint, base, binary
, bytestring, containers, directory, Elm, filepath, HTTP
@@ -77076,6 +76094,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "email-validate-json" = callPackage
+ ({ mkDerivation, aeson, base, email-validate, text }:
+ mkDerivation {
+ pname = "email-validate-json";
+ version = "0.1.0.0";
+ sha256 = "0ce3fe7544bc4637efe69c897259435cf8cc60affbc8a8090d17df81aaa8dc19";
+ libraryHaskellDepends = [ aeson base email-validate text ];
+ homepage = "https://github.com/mwotton/email-validate-json#readme";
+ description = "Aeson instances for email-validate";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"email-validator" = callPackage
({ mkDerivation, base, bytestring, cmdargs, directory, dns, doctest
, email-validate, HUnit, parallel-io, pcre-light, tasty
@@ -77502,20 +76532,20 @@ self: {
}) {};
"enumerate" = callPackage
- ({ mkDerivation, array, base, containers, deepseq, exceptions
- , ghc-prim, MemoTrie, semigroups, template-haskell, vinyl
+ ({ mkDerivation, array, base, containers, deepseq, doctest
+ , ghc-prim, template-haskell, vinyl
}:
mkDerivation {
pname = "enumerate";
- version = "0.1.1";
- sha256 = "22b4079b793d645f2d1c1e0f151b1aa78e430a32868cf2f8980f7ca13b73091e";
+ version = "0.2.1";
+ sha256 = "94a61aa2c25ef3ad6f3ccb7edd9899bfac771b11f138428d15d9c27a52c04f10";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- array base containers deepseq exceptions ghc-prim MemoTrie
- semigroups template-haskell vinyl
+ array base containers deepseq ghc-prim template-haskell vinyl
];
executableHaskellDepends = [ base ];
+ testHaskellDepends = [ base doctest ];
homepage = "https://github.com/sboosali/enumerate";
description = "enumerate all the values in a finite type (automatically)";
license = stdenv.lib.licenses.mit;
@@ -79061,6 +78091,28 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "eventsourced" = callPackage
+ ({ mkDerivation, base, blaze-builder, bytestring, HUnit, wai
+ , wai-extra, warp
+ }:
+ mkDerivation {
+ pname = "eventsourced";
+ version = "1.1.1.0";
+ sha256 = "a1a8fe03a4b01b99dec67fa046c7df2a900dde4f18404a05e6e0ca7c14798284";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base blaze-builder bytestring wai wai-extra
+ ];
+ executableHaskellDepends = [ base warp ];
+ testHaskellDepends = [
+ base blaze-builder bytestring HUnit wai-extra
+ ];
+ homepage = "https://github.com/richardTowers/eventsourced#readme";
+ description = "Server-Sent Events the UNIX way";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"eventstore_0_10_0_1" = callPackage
({ mkDerivation, aeson, async, base, bytestring, cereal, containers
, network, protobuf, random, stm, tasty, tasty-hunit, text, time
@@ -79210,7 +78262,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "exact-pi" = callPackage
+ "exact-pi_0_4_1_1" = callPackage
({ mkDerivation, base, numtype-dk }:
mkDerivation {
pname = "exact-pi";
@@ -79220,6 +78272,19 @@ self: {
homepage = "https://github.com/dmcclean/exact-pi/";
description = "Exact rational multiples of pi (and integer powers of pi)";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "exact-pi" = callPackage
+ ({ mkDerivation, base, numtype-dk }:
+ mkDerivation {
+ pname = "exact-pi";
+ version = "0.4.1.2";
+ sha256 = "b2bbe6725fba3bd2f3a9506e2ff4f194fa6cdb918d59debabd5e1fc452fc45e3";
+ libraryHaskellDepends = [ base numtype-dk ];
+ homepage = "https://github.com/dmcclean/exact-pi/";
+ description = "Exact rational multiples of pi (and integer powers of pi)";
+ license = stdenv.lib.licenses.mit;
}) {};
"exact-real_0_12_0" = callPackage
@@ -79334,7 +78399,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "exception-mtl" = callPackage
+ "exception-mtl_0_4" = callPackage
({ mkDerivation, base, exception-transformers, mtl, transformers }:
mkDerivation {
pname = "exception-mtl";
@@ -79345,6 +78410,20 @@ self: {
];
description = "Exception monad transformer instances for mtl classes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "exception-mtl" = callPackage
+ ({ mkDerivation, base, exception-transformers, mtl, transformers }:
+ mkDerivation {
+ pname = "exception-mtl";
+ version = "0.4.0.1";
+ sha256 = "ec13bcbae6cdde218a7118a2bd3058493af09a330b86e28469a278c9b2cea134";
+ libraryHaskellDepends = [
+ base exception-transformers mtl transformers
+ ];
+ description = "Exception monad transformer instances for mtl classes";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"exception-transformers_0_3_0_4" = callPackage
@@ -80101,14 +79180,14 @@ self: {
}:
mkDerivation {
pname = "extensible";
- version = "0.3.5";
- sha256 = "be5e73575f388277713e51398a9734b58cbec42dd1bd58476bba4858f33ece49";
+ version = "0.3.7";
+ sha256 = "05ae22329761fe7b455544013d13439fd5208b0191a97d9b3e3e81ec7a32e38e";
libraryHaskellDepends = [
base constraints monad-skeleton profunctors tagged template-haskell
transformers
];
homepage = "https://github.com/fumieval/extensible";
- description = "Extensible, efficient, lens-friendly data types";
+ description = "Extensible, efficient, optics-friendly data types";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -80300,7 +79379,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "extra" = callPackage
+ "extra_1_4_5" = callPackage
({ mkDerivation, base, directory, filepath, process, QuickCheck
, time, unix
}:
@@ -80317,6 +79396,26 @@ self: {
homepage = "https://github.com/ndmitchell/extra#readme";
description = "Extra functions I use";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "extra" = callPackage
+ ({ mkDerivation, base, directory, filepath, process, QuickCheck
+ , time, unix
+ }:
+ mkDerivation {
+ pname = "extra";
+ version = "1.4.6";
+ sha256 = "208be62dd096768ade9d7191e55287acacfc11f440c4bf50b335b4a8c4ebc707";
+ libraryHaskellDepends = [
+ base directory filepath process time unix
+ ];
+ testHaskellDepends = [
+ base directory filepath QuickCheck time unix
+ ];
+ homepage = "https://github.com/ndmitchell/extra#readme";
+ description = "Extra functions I use";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"extract-dependencies" = callPackage
@@ -80508,6 +79607,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "failure-detector" = callPackage
+ ({ mkDerivation, base, containers, QuickCheck, statistics, tasty
+ , tasty-quickcheck, time
+ }:
+ mkDerivation {
+ pname = "failure-detector";
+ version = "0";
+ sha256 = "3089dbca68f42f1d753175573e95ee9269102b88f9fcb572f00e6673b2a9ec7b";
+ libraryHaskellDepends = [ base containers statistics time ];
+ testHaskellDepends = [
+ base QuickCheck tasty tasty-quickcheck time
+ ];
+ jailbreak = true;
+ description = "Failure Detectors implimented in Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"fair-predicates" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -80651,7 +79767,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "fast-builder" = callPackage
+ "fast-builder_0_0_0_4" = callPackage
({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck
, stm
}:
@@ -80664,6 +79780,22 @@ self: {
homepage = "http://github.com/takano-akio/fast-builder";
description = "Fast ByteString Builder";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "fast-builder" = callPackage
+ ({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck
+ , stm
+ }:
+ mkDerivation {
+ pname = "fast-builder";
+ version = "0.0.0.5";
+ sha256 = "8dc2dbd164d71aacc1a92b0c31448e86311886f188a7f3b65894dae1ccf183ac";
+ libraryHaskellDepends = [ base bytestring ghc-prim ];
+ testHaskellDepends = [ base bytestring process QuickCheck stm ];
+ homepage = "http://github.com/takano-akio/fast-builder";
+ description = "Fast ByteString Builder";
+ license = stdenv.lib.licenses.publicDomain;
}) {};
"fast-digits" = callPackage
@@ -88385,6 +87517,27 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "generic-random" = callPackage
+ ({ mkDerivation, ad, base, containers, hashable, hmatrix, ieee754
+ , MonadRandom, mtl, QuickCheck, transformers, unordered-containers
+ , vector
+ }:
+ mkDerivation {
+ pname = "generic-random";
+ version = "0.1.0.0";
+ sha256 = "80c44e1d16bbbb1d524a6776ff421fe904f77354a5cbbd8bd5cfc2c2b983c0e2";
+ revision = "1";
+ editedCabalFile = "758274d60d15c1c553daa7e0e7b87dcde966f954b10325605eb704e9c8ab52b7";
+ libraryHaskellDepends = [
+ ad base containers hashable hmatrix ieee754 MonadRandom mtl
+ QuickCheck transformers unordered-containers vector
+ ];
+ testHaskellDepends = [ base QuickCheck ];
+ homepage = "http://github.com/lysxia/generic-random";
+ description = "Generic random generators";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"generic-server" = callPackage
({ mkDerivation, base, bytestring, network }:
mkDerivation {
@@ -88654,6 +87807,8 @@ self: {
pname = "generics-sop-lens";
version = "0.1.1.0";
sha256 = "77dad1fc8dc9a9e7bd049a46ea4917b5d6e6b1d22a7194f67965126717cfd360";
+ revision = "1";
+ editedCabalFile = "fc41f76ff2763343ea54274f64907f4343abe3f195a4b271149a524023cfcea0";
libraryHaskellDepends = [ base generics-sop lens ];
homepage = "https://github.com/phadej/generics-sop-lens#readme";
description = "Lenses for types in generics-sop";
@@ -89021,6 +88176,19 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
+ "geojson-types" = callPackage
+ ({ mkDerivation, aeson, base, bson, bytestring, lens, text }:
+ mkDerivation {
+ pname = "geojson-types";
+ version = "0.1.3";
+ sha256 = "92f43434853cbe65289baa875088e6055df827b7a79fb952f1ad9e55e3ce6c82";
+ libraryHaskellDepends = [ aeson base bson bytestring lens text ];
+ jailbreak = true;
+ homepage = "https://github.com/alios/geojson-types/";
+ description = "GeoJSON data types including JSON/BSON conversion";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"geom2d" = callPackage
({ mkDerivation, base, ieee754, linear, QuickCheck }:
mkDerivation {
@@ -89227,8 +88395,8 @@ self: {
}:
mkDerivation {
pname = "ghc-dump-tree";
- version = "0.2.0.0";
- sha256 = "2b1cf817fcd1727b029a74d393816da936cb49e9048524dc743afb3d9cc65e5e";
+ version = "0.2.0.1";
+ sha256 = "784a983d6d887f5d36b6169a7d1bdd41800699ef79f74e3806c081ce1e2074a8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -89239,7 +88407,6 @@ self: {
aeson base bytestring ghc optparse-applicative pretty pretty-show
process unordered-containers vector
];
- jailbreak = true;
homepage = "https://github.com/edsko/ghc-dump-tree";
description = "Dump GHC's parsed, renamed, and type checked ASTs";
license = stdenv.lib.licenses.bsd3;
@@ -90294,8 +89461,8 @@ self: {
}:
mkDerivation {
pname = "ghcid";
- version = "0.6.2";
- sha256 = "2977c1f260d3552e321ac120b37e25537f81f127d2aa579310a9f4232d3fd690";
+ version = "0.6.4";
+ sha256 = "fc43077955f9e53519b028364da0ec8bbea467b739b89ed7b2fa234a4a4b71db";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -90345,8 +89512,8 @@ self: {
}:
mkDerivation {
pname = "ghcjs-dom";
- version = "0.2.3.1";
- sha256 = "dfdee3dcd46ad5707a09488ccf0d2c69dbb47d2044212aeadec0a44f3facee39";
+ version = "0.2.4.0";
+ sha256 = "986db6b770c348d7a28368309a648626455d55e7a5705a849fd5a2981eb868a6";
libraryHaskellDepends = [
base glib gtk3 text transformers webkitgtk3
];
@@ -90477,8 +89644,8 @@ self: {
}:
mkDerivation {
pname = "gi-atk";
- version = "0.2.18.13";
- sha256 = "2127e52f83f3cb6c4db30d69a9f19d3dfea987c13816bb9ce6421a35f704b496";
+ version = "0.2.18.15";
+ sha256 = "32433985326a9fedef4bec6c28085bb379f435ba1eaea2588aed10a1ff126e3d";
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject haskell-gi-base text
transformers
@@ -90490,14 +89657,35 @@ self: {
hydraPlatforms = [ "x86_64-linux" ];
}) {inherit (pkgs) atk;};
+ "gi-atk_2_0_1" = callPackage
+ ({ mkDerivation, atk, base, bytestring, containers, gi-glib
+ , gi-gobject, haskell-gi-base, text, transformers
+ }:
+ mkDerivation {
+ pname = "gi-atk";
+ version = "2.0.1";
+ sha256 = "fdcf66f99d6d829eb1313fafc6369fd6a50e0d2198a702fa4cdff5b7054e5771";
+ libraryHaskellDepends = [
+ base bytestring containers gi-glib gi-gobject haskell-gi-base text
+ transformers
+ ];
+ libraryPkgconfigDepends = [ atk ];
+ doHaddock = false;
+ jailbreak = true;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "Atk bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) atk;};
+
"gi-cairo" = callPackage
({ mkDerivation, base, bytestring, cairo-gobject, containers
, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-cairo";
- version = "0.1.14.13";
- sha256 = "d7055a146fc315244c21fdccdc0cfbac7a2d2a95cdcc38d8330380b3104600cc";
+ version = "0.1.14.15";
+ sha256 = "82479b13e0b127d8955d2d3069ad6105674f03f6b8bab0752d7653918fbc7728";
libraryHaskellDepends = [
base bytestring containers haskell-gi-base text transformers
];
@@ -90508,6 +89696,26 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {cairo-gobject = null;};
+ "gi-cairo_1_0_1" = callPackage
+ ({ mkDerivation, base, bytestring, cairo-gobject, containers
+ , haskell-gi-base, text, transformers
+ }:
+ mkDerivation {
+ pname = "gi-cairo";
+ version = "1.0.1";
+ sha256 = "2500fd8040dd355dd55253fff836ddc70f6e5569b163be67c14b2dca5a52bfe0";
+ libraryHaskellDepends = [
+ base bytestring containers haskell-gi-base text transformers
+ ];
+ libraryPkgconfigDepends = [ cairo-gobject ];
+ doHaddock = false;
+ jailbreak = true;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "Cairo bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {cairo-gobject = null;};
+
"gi-gdk" = callPackage
({ mkDerivation, base, bytestring, containers, gdk3, gi-cairo
, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango
@@ -90515,8 +89723,8 @@ self: {
}:
mkDerivation {
pname = "gi-gdk";
- version = "0.3.18.13";
- sha256 = "f0872053ddd8bed0e10d794b55b4ccec169747a545c4d403b78dd06e6d203f40";
+ version = "0.3.18.15";
+ sha256 = "02c44539e484c7dd7b17583c04ffc8c36df05ceb4dc8c4f5f815df0798881f8f";
libraryHaskellDepends = [
base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib
gi-gobject gi-pango haskell-gi-base text transformers
@@ -90528,14 +89736,36 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {gdk3 = null;};
+ "gi-gdk_3_0_1" = callPackage
+ ({ mkDerivation, base, bytestring, containers, gdk3, gi-cairo
+ , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango
+ , haskell-gi-base, text, transformers
+ }:
+ mkDerivation {
+ pname = "gi-gdk";
+ version = "3.0.1";
+ sha256 = "e9faa1e181513e5fbb3ec200df827373a81cb9abf1d095ba401d7eafef9628c1";
+ libraryHaskellDepends = [
+ base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib
+ gi-gobject gi-pango haskell-gi-base text transformers
+ ];
+ libraryPkgconfigDepends = [ gdk3 ];
+ doHaddock = false;
+ jailbreak = true;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "Gdk bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {gdk3 = null;};
+
"gi-gdkpixbuf" = callPackage
({ mkDerivation, base, bytestring, containers, gdk_pixbuf, gi-gio
, gi-glib, gi-gobject, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gdkpixbuf";
- version = "0.2.32.13";
- sha256 = "862d88afbea9c624d3bc4365b5cfdd26f3d0a664a8b1cf31ff9978624c2d56bd";
+ version = "0.2.32.15";
+ sha256 = "bb93833ddb7990ee8dd773c59c689ff19469b7b527353e13d6cd896fc48cb453";
libraryHaskellDepends = [
base bytestring containers gi-gio gi-glib gi-gobject
haskell-gi-base text transformers
@@ -90547,14 +89777,35 @@ self: {
hydraPlatforms = [ "x86_64-linux" ];
}) {inherit (pkgs) gdk_pixbuf;};
+ "gi-gdkpixbuf_2_0_1" = callPackage
+ ({ mkDerivation, base, bytestring, containers, gdk_pixbuf, gi-gio
+ , gi-glib, gi-gobject, haskell-gi-base, text, transformers
+ }:
+ mkDerivation {
+ pname = "gi-gdkpixbuf";
+ version = "2.0.1";
+ sha256 = "3e05be1242632f33362a8d064f3a13e9276110636da96dcba2a6915f56b2c7a8";
+ libraryHaskellDepends = [
+ base bytestring containers gi-gio gi-glib gi-gobject
+ haskell-gi-base text transformers
+ ];
+ libraryPkgconfigDepends = [ gdk_pixbuf ];
+ doHaddock = false;
+ jailbreak = true;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "GdkPixbuf bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) gdk_pixbuf;};
+
"gi-gio" = callPackage
({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
, glib, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gio";
- version = "0.2.46.13";
- sha256 = "7a44b89ec398d272f601a4526cd208373f6f8b0435429f0f30f17e6bb8d1ee27";
+ version = "0.2.46.15";
+ sha256 = "c84fdfc6c83e114667458f785e3a88337d08109e353486865099c23c2d1df82a";
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject haskell-gi-base text
transformers
@@ -90566,21 +89817,44 @@ self: {
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {inherit (pkgs) glib;};
+ "gi-gio_2_0_1" = callPackage
+ ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
+ , glib, haskell-gi-base, text, transformers
+ }:
+ mkDerivation {
+ pname = "gi-gio";
+ version = "2.0.1";
+ sha256 = "71c4e7338a245572fd893a19544370030fdc1fd04029ce5a8af44cbb54cf925b";
+ libraryHaskellDepends = [
+ base bytestring containers gi-glib gi-gobject haskell-gi-base text
+ transformers
+ ];
+ libraryPkgconfigDepends = [ glib ];
+ doHaddock = false;
+ jailbreak = true;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "Gio bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) glib;};
+
"gi-girepository" = callPackage
({ mkDerivation, base, bytestring, containers, gi-gobject
, gobjectIntrospection, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-girepository";
- version = "0.1.46.13";
- sha256 = "da0a3b9be77596e8f47436652de9c1ebd9045a13648d93e2d3ade370c9e54666";
+ version = "1.0.1";
+ sha256 = "d152f0e1e8c7d5cf0fee86e61b8d3874985720216ab7db08a63c8ab4cc05f2d3";
libraryHaskellDepends = [
base bytestring containers gi-gobject haskell-gi-base text
transformers
];
libraryPkgconfigDepends = [ gobjectIntrospection ];
+ doHaddock = false;
+ jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "GIRepository bindings";
+ description = "GIRepository (gobject-introspection) bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = [ "x86_64-linux" ];
}) {inherit (pkgs) gobjectIntrospection;};
@@ -90591,8 +89865,8 @@ self: {
}:
mkDerivation {
pname = "gi-glib";
- version = "0.2.46.13";
- sha256 = "3763379e018fcd86ad2f924a8c9dd40ce84a33cf8f8bcddcdd69433c5c58d1e8";
+ version = "0.2.46.15";
+ sha256 = "c3d9cac58c0502907744b15c42fd0217ba617e3b2b914fe3c78982b227ba5bd3";
libraryHaskellDepends = [
base bytestring containers haskell-gi-base text transformers
];
@@ -90603,14 +89877,34 @@ self: {
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {inherit (pkgs) glib;};
+ "gi-glib_2_0_1" = callPackage
+ ({ mkDerivation, base, bytestring, containers, glib
+ , haskell-gi-base, text, transformers
+ }:
+ mkDerivation {
+ pname = "gi-glib";
+ version = "2.0.1";
+ sha256 = "3d45895bda0014da75c69552e484beb283f0fea4b40e06f63b5b12c5d75d40c7";
+ libraryHaskellDepends = [
+ base bytestring containers haskell-gi-base text transformers
+ ];
+ libraryPkgconfigDepends = [ glib ];
+ doHaddock = false;
+ jailbreak = true;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "GLib bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) glib;};
+
"gi-gobject" = callPackage
({ mkDerivation, base, bytestring, containers, gi-glib, glib
, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gobject";
- version = "0.2.46.13";
- sha256 = "07689ff907eceb5165c65ab3948d40aa3d8b92e1ac5f0179f482d413bd6458d6";
+ version = "0.2.46.15";
+ sha256 = "e3ca30d08c8819db8bef074e22826d3e52149949a0d7055e12f685df9d5c42b3";
libraryHaskellDepends = [
base bytestring containers gi-glib haskell-gi-base text
transformers
@@ -90622,21 +89916,44 @@ self: {
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {inherit (pkgs) glib;};
+ "gi-gobject_2_0_1" = callPackage
+ ({ mkDerivation, base, bytestring, containers, gi-glib, glib
+ , haskell-gi-base, text, transformers
+ }:
+ mkDerivation {
+ pname = "gi-gobject";
+ version = "2.0.1";
+ sha256 = "92a83d38f22456c39aa6452f63e4040328f2fcd595f7ddc3a77aaa30ae0f2ad9";
+ libraryHaskellDepends = [
+ base bytestring containers gi-glib haskell-gi-base text
+ transformers
+ ];
+ libraryPkgconfigDepends = [ glib ];
+ doHaddock = false;
+ jailbreak = true;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "GObject bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) glib;};
+
"gi-gst" = callPackage
({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
, gstreamer, haskell-gi-base, text, transformers
}:
mkDerivation {
pname = "gi-gst";
- version = "0.1.6.13";
- sha256 = "8b3eb8f93a6f32c9e8db6ebb02d33f78eda651a8428926e2e6c0a22d10ed8ea2";
+ version = "1.0.1";
+ sha256 = "693a2389cf9bda84cd5972e518e3fa45ebf47c508b54e21348ad129d58a6282e";
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject haskell-gi-base text
transformers
];
libraryPkgconfigDepends = [ gstreamer ];
+ doHaddock = false;
+ jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Gst bindings";
+ description = "GStreamer bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gstreamer;};
@@ -90648,15 +89965,17 @@ self: {
}:
mkDerivation {
pname = "gi-gstaudio";
- version = "0.1.6.13";
- sha256 = "307b12f1f6ba52a3b95fcfe4433ac9f947abdf45527329c3e8f0350a3084998b";
+ version = "1.0.1";
+ sha256 = "fd58d01e731cbfa2b8f7d81f883c6b76c751908c7f2c147c296cbf6c6e1a35d3";
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase
haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ gst_plugins_base ];
+ doHaddock = false;
+ jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "GstAudio bindings";
+ description = "GStreamerAudio bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gst_plugins_base;};
@@ -90667,15 +89986,17 @@ self: {
}:
mkDerivation {
pname = "gi-gstbase";
- version = "0.1.6.13";
- sha256 = "aab56f2d440b225604842451a94bba851c35bd177b48132da83c7890440e445c";
+ version = "1.0.1";
+ sha256 = "1f80a542199395af8606e7c972b3475d0fa1866449dcc041d634be3b7642e0fd";
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject gi-gst
haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ gst_plugins_base ];
+ doHaddock = false;
+ jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "GstBase bindings";
+ description = "GStreamerBase bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gst_plugins_base;};
@@ -90687,15 +90008,17 @@ self: {
}:
mkDerivation {
pname = "gi-gstvideo";
- version = "0.1.6.13";
- sha256 = "e35c5f20f8e09dc8232e5d26ff97948fd0dc42d0de8bf20a5c29c22788f03186";
+ version = "1.0.1";
+ sha256 = "7aa64be14fb2a226006c2e813ec19b833625dcdc124c26dba9201eae6062bad3";
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase
haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ gst_plugins_base ];
+ doHaddock = false;
+ jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "GstVideo bindings";
+ description = "GStreamerVideo bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gst_plugins_base;};
@@ -90707,8 +90030,8 @@ self: {
}:
mkDerivation {
pname = "gi-gtk";
- version = "0.3.18.13";
- sha256 = "fed4dae7e04ee55819be887aac949df1e57c9d4f42804620cd78377b961cdc8a";
+ version = "0.3.18.15";
+ sha256 = "213e957a7c0ddbc86ed83eae0528e20d7801638f73422d861c47f3003889e0cd";
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
gi-gio gi-glib gi-gobject gi-pango haskell-gi-base text
@@ -90721,18 +90044,65 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {gtk3 = pkgs.gnome2.gtk;};
+ "gi-gtk_3_0_1" = callPackage
+ ({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo
+ , gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3
+ , haskell-gi-base, text, transformers
+ }:
+ mkDerivation {
+ pname = "gi-gtk";
+ version = "3.0.1";
+ sha256 = "d58d3698d8635de6c302daf29c23a565c03974a6ce2acc77119738b144450cce";
+ libraryHaskellDepends = [
+ base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
+ gi-gio gi-glib gi-gobject gi-pango haskell-gi-base text
+ transformers
+ ];
+ libraryPkgconfigDepends = [ gtk3 ];
+ doHaddock = false;
+ jailbreak = true;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "Gtk bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {gtk3 = pkgs.gnome2.gtk;};
+
+ "gi-gtksource" = callPackage
+ ({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo
+ , gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-gtk
+ , gi-pango, gtksourceview, haskell-gi-base, text, transformers
+ }:
+ mkDerivation {
+ pname = "gi-gtksource";
+ version = "3.0.1";
+ sha256 = "cdf804bb7df6d991876ae1ae971d2cc48899a902699f1f70839952352e8a6769";
+ libraryHaskellDepends = [
+ base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
+ gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi-base text
+ transformers
+ ];
+ libraryPkgconfigDepends = [ gtksourceview ];
+ doHaddock = false;
+ jailbreak = true;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "GtkSource bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ }) {inherit (pkgs.gnome) gtksourceview;};
+
"gi-javascriptcore" = callPackage
({ mkDerivation, base, bytestring, containers, haskell-gi-base
, javascriptcoregtk, text, transformers
}:
mkDerivation {
pname = "gi-javascriptcore";
- version = "0.2.10.13";
- sha256 = "15518556f06c707710899cf1d3277e6e5a0c14e4310e3b288f31d86e55e256c7";
+ version = "4.0.1";
+ sha256 = "325621bf6a375f6844907f4a9fc08536613e7859a0c6e43bf9d2ec6ba561ccec";
libraryHaskellDepends = [
base bytestring containers haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ javascriptcoregtk ];
+ doHaddock = false;
+ jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "JavaScriptCore bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90740,24 +90110,26 @@ self: {
}) {javascriptcoregtk = null;};
"gi-notify" = callPackage
- ({ mkDerivation, base, bytestring, containers, gdk_pixbuf
- , gi-gdkpixbuf, gi-glib, gi-gobject, haskell-gi-base, text
+ ({ mkDerivation, base, bytestring, containers, gi-gdkpixbuf
+ , gi-glib, gi-gobject, haskell-gi-base, libnotify, text
, transformers
}:
mkDerivation {
pname = "gi-notify";
- version = "0.2.32.13";
- sha256 = "1b644d4d5ce7cbf93fdeea6f1fd92506f878449a0da28ea8e027b25177412699";
+ version = "0.7.1";
+ sha256 = "016271d69825c37fad0249afae299d04de63a780527afb93a93e8b70f770c881";
libraryHaskellDepends = [
base bytestring containers gi-gdkpixbuf gi-glib gi-gobject
haskell-gi-base text transformers
];
- libraryPkgconfigDepends = [ gdk_pixbuf ];
+ libraryPkgconfigDepends = [ libnotify ];
+ doHaddock = false;
+ jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Notify bindings";
+ description = "Libnotify bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = [ "x86_64-linux" ];
- }) {inherit (pkgs) gdk_pixbuf;};
+ }) {inherit (pkgs) libnotify;};
"gi-pango" = callPackage
({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
@@ -90765,8 +90137,8 @@ self: {
}:
mkDerivation {
pname = "gi-pango";
- version = "0.1.38.13";
- sha256 = "1398cf18aacad90acbcea526e7c35816385676530abc5896dc5f571a52350766";
+ version = "0.1.38.15";
+ sha256 = "998580418b896f1c817ae7f07998d314c54f14c5b03ce47893892f2550a24f08";
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject haskell-gi-base text
transformers
@@ -90778,19 +90150,62 @@ self: {
hydraPlatforms = [ "x86_64-linux" ];
}) {inherit (pkgs.gnome) pango;};
+ "gi-pango_1_0_1" = callPackage
+ ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject
+ , haskell-gi-base, pango, text, transformers
+ }:
+ mkDerivation {
+ pname = "gi-pango";
+ version = "1.0.1";
+ sha256 = "330c2a7acb2d43025db180bc649710c7817093bedadbfbf5f07f09f532f150ce";
+ libraryHaskellDepends = [
+ base bytestring containers gi-glib gi-gobject haskell-gi-base text
+ transformers
+ ];
+ libraryPkgconfigDepends = [ pango ];
+ doHaddock = false;
+ jailbreak = true;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "Pango bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs.gnome) pango;};
+
+ "gi-pangocairo" = callPackage
+ ({ mkDerivation, base, bytestring, containers, gi-cairo, gi-glib
+ , gi-gobject, gi-pango, haskell-gi-base, pango, text, transformers
+ }:
+ mkDerivation {
+ pname = "gi-pangocairo";
+ version = "1.0.1";
+ sha256 = "60adcf5b4ebc22624fcccb20de47fb86b9194f793a3cb8be87282d2067f3e7dd";
+ libraryHaskellDepends = [
+ base bytestring containers gi-cairo gi-glib gi-gobject gi-pango
+ haskell-gi-base text transformers
+ ];
+ libraryPkgconfigDepends = [ pango ];
+ doHaddock = false;
+ jailbreak = true;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "PangoCairo bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ }) {inherit (pkgs.gnome) pango;};
+
"gi-poppler" = callPackage
({ mkDerivation, base, bytestring, containers, gi-cairo, gi-gio
, gi-glib, gi-gobject, haskell-gi-base, poppler, text, transformers
}:
mkDerivation {
pname = "gi-poppler";
- version = "0.0.34.13";
- sha256 = "22104ebf4726ba393968011dfc09c5d4333b26c8b630b2d2258dc5ff835b75a8";
+ version = "0.18.1";
+ sha256 = "8f9ed616e2c01ffe74cedf2a3da31999b4feec0c82629ae802a0b3fde99d6059";
libraryHaskellDepends = [
base bytestring containers gi-cairo gi-gio gi-glib gi-gobject
haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ poppler ];
+ doHaddock = false;
+ jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Poppler bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90803,15 +90218,17 @@ self: {
}:
mkDerivation {
pname = "gi-soup";
- version = "0.2.52.13";
- sha256 = "ffe480948998273a6b2454c85ad3bc05e67fd3b614c7932a44b954cdc77fd9de";
+ version = "2.4.1";
+ sha256 = "2608f6695cd8d64fdce0490e63ea18704dcd55adec70aa7cb402523f53ed886d";
libraryHaskellDepends = [
base bytestring containers gi-gio gi-glib gi-gobject
haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ libsoup ];
+ doHaddock = false;
+ jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "Soup bindings";
+ description = "Libsoup bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = [ "x86_64-linux" ];
}) {inherit (pkgs.gnome) libsoup;};
@@ -90823,13 +90240,15 @@ self: {
}:
mkDerivation {
pname = "gi-vte";
- version = "0.0.42.13";
- sha256 = "f69c75e5cd250452463b465fa308f08fcc3c2c15be07862c4dcdcbdae8f60039";
+ version = "2.91.1";
+ sha256 = "b496e7011385f0864e7cf3eb44066e9e6bbcc366b22694d24e2b8eaeab888a91";
libraryHaskellDepends = [
base bytestring containers gi-atk gi-gdk gi-gio gi-glib gi-gobject
gi-gtk gi-pango haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ vte ];
+ doHaddock = false;
+ jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Vte bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90844,14 +90263,15 @@ self: {
}:
mkDerivation {
pname = "gi-webkit";
- version = "0.2.4.13";
- sha256 = "a7f0a613c96944a90ac9a178ae58467028daa599805ea44f3440461450a7b77b";
+ version = "3.0.1";
+ sha256 = "dfe29ccfb9a3e4972f5a9d42ed38d06a689772826f02f755ff4d5f86b6bc4616";
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
gi-gio gi-glib gi-gobject gi-gtk gi-javascriptcore gi-soup
haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ webkit ];
+ doHaddock = false;
jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "WebKit bindings";
@@ -90866,14 +90286,16 @@ self: {
}:
mkDerivation {
pname = "gi-webkit2";
- version = "0.2.10.13";
- sha256 = "6668a9dd9785cffc783051ea78a8cac92466f1cb1760854b96a90c1ddf537a07";
+ version = "4.0.1";
+ sha256 = "f5ff290defc0d057245ef7f17c50cd08ab13a40c64c1db9078e50d31c0384027";
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gio gi-glib
gi-gobject gi-gtk gi-javascriptcore gi-soup haskell-gi-base text
transformers
];
libraryPkgconfigDepends = [ webkit2gtk ];
+ doHaddock = false;
+ jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "WebKit2 bindings";
license = stdenv.lib.licenses.lgpl21;
@@ -90887,15 +90309,17 @@ self: {
}:
mkDerivation {
pname = "gi-webkit2webextension";
- version = "0.2.10.13";
- sha256 = "7e3f0878325c7d67757762f93648ebcd703ed7fc4003fc27f2d2026a50892ec0";
+ version = "4.0.1";
+ sha256 = "9192d954748c6516a144bc734d6cc0945ae57401fa51da77903e1b7218e4ca0d";
libraryHaskellDepends = [
base bytestring containers gi-gobject gi-gtk gi-javascriptcore
gi-soup haskell-gi-base text transformers
];
libraryPkgconfigDepends = [ webkit2gtk-web-extension ];
+ doHaddock = false;
+ jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
- description = "WebKit2WebExtension bindings";
+ description = "WebKit2-WebExtension bindings";
license = stdenv.lib.licenses.lgpl21;
hydraPlatforms = stdenv.lib.platforms.none;
}) {webkit2gtk-web-extension = null;};
@@ -91440,8 +90864,8 @@ self: {
}:
mkDerivation {
pname = "git-annex";
- version = "6.20160419";
- sha256 = "1452a55809ba7367847fc4a77f2d8a5365af92e130d5ca460bf0880a26a6fb8e";
+ version = "6.20160511";
+ sha256 = "85fc8853166fe57d91dc2776d5df4acb5911a91815f8aa12881928a1afe8ba01";
configureFlags = [
"-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns"
"-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3"
@@ -91868,8 +91292,8 @@ self: {
}:
mkDerivation {
pname = "github-backup";
- version = "1.20160319";
- sha256 = "6831013f8ce72b5bfbe8ba19cd46bcca61e134d463d64f614db54526a944f73f";
+ version = "1.20160511";
+ sha256 = "6c6e2d78869511a58e369165991a145fb55740a0673e6d739456454ec1c06a22";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -91903,27 +91327,6 @@ self: {
}) {};
"github-release" = callPackage
- ({ mkDerivation, aeson, base, bytestring, http-client
- , http-client-tls, http-types, mime-types, optparse-generic, text
- , unordered-containers, uri-templater
- }:
- mkDerivation {
- pname = "github-release";
- version = "0.1.5";
- sha256 = "bef5d00d01c10c5c2d8deb29465eefe390c8dc6ad691f1c81fab86256c50594e";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base bytestring http-client http-client-tls http-types
- mime-types optparse-generic text unordered-containers uri-templater
- ];
- executableHaskellDepends = [ base ];
- homepage = "https://github.com/tfausak/github-release#readme";
- description = "Upload files to GitHub releases";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "github-release_0_1_8" = callPackage
({ mkDerivation, aeson, base, bytestring, http-client
, http-client-tls, http-types, mime-types, optparse-generic, text
, unordered-containers, uri-templater
@@ -91942,7 +91345,6 @@ self: {
homepage = "https://github.com/tfausak/github-release#readme";
description = "Upload files to GitHub releases";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"github-types" = callPackage
@@ -94122,8 +93524,8 @@ self: {
pname = "gogol-core";
version = "0.0.1";
sha256 = "5baad8cb7a646cee9490916096ba71bf75168d7f807d79419d350813fc52ef9b";
- revision = "1";
- editedCabalFile = "511fe34ba21f0de5e0349dbab8be23bf824e1229c086ee95613af4b5bf8e29e2";
+ revision = "2";
+ editedCabalFile = "71b667ad5dd6cc0cbb83311d78f3649ec08e59d50276a382c6b5074e86c8f58b";
libraryHaskellDepends = [
aeson attoparsec base bytestring case-insensitive conduit dlist
exceptions hashable http-client http-media http-types lens
@@ -96141,7 +95543,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "graphviz" = callPackage
+ "graphviz_2999_18_0_2" = callPackage
({ mkDerivation, base, bytestring, colour, containers, directory
, dlist, fgl, fgl-arbitrary, filepath, polyparse, process
, QuickCheck, temporary, text, transformers, wl-pprint-text
@@ -96162,6 +95564,35 @@ self: {
testHaskellDepends = [
base containers fgl fgl-arbitrary filepath QuickCheck text
];
+ jailbreak = true;
+ doCheck = false;
+ homepage = "http://projects.haskell.org/graphviz/";
+ description = "Bindings to Graphviz for graph visualisation";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "graphviz" = callPackage
+ ({ mkDerivation, base, bytestring, colour, containers, directory
+ , dlist, fgl, fgl-arbitrary, filepath, polyparse, process
+ , QuickCheck, temporary, text, transformers, wl-pprint-text
+ }:
+ mkDerivation {
+ pname = "graphviz";
+ version = "2999.18.1.0";
+ sha256 = "fe3575744144337ad0339a8c6aa10e93197444f8c93a359865d8b2e06b68e19f";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring colour containers directory dlist fgl filepath
+ polyparse process temporary text transformers wl-pprint-text
+ ];
+ executableHaskellDepends = [
+ base bytestring directory filepath text
+ ];
+ testHaskellDepends = [
+ base containers fgl fgl-arbitrary filepath QuickCheck text
+ ];
doCheck = false;
homepage = "http://projects.haskell.org/graphviz/";
description = "Bindings to Graphviz for graph visualisation";
@@ -96274,6 +95705,7 @@ self: {
aeson aeson-casing base bytestring file-embed network scientific
tasty tasty-hunit text time vector
];
+ doCheck = false;
homepage = "https://github.com/AndrewRademacher/haskell-graylog";
description = "Support for graylog output";
license = "unknown";
@@ -98737,6 +98169,27 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "hablog" = callPackage
+ ({ mkDerivation, base, bifunctors, blaze-html, blaze-markup
+ , bytestring, containers, directory, filepath, markdown, mime-types
+ , mtl, scotty, scotty-tls, text, transformers
+ }:
+ mkDerivation {
+ pname = "hablog";
+ version = "0.4.0";
+ sha256 = "c7bb65866e22621196cac657afc610a578a5bab290af06e5b8d221ea3da2b80d";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bifunctors blaze-html blaze-markup bytestring containers
+ directory filepath markdown mime-types mtl scotty scotty-tls text
+ transformers
+ ];
+ executableHaskellDepends = [ base ];
+ description = "A blog system";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"hacanon-light" = callPackage
({ mkDerivation, base, mtl, template-haskell }:
mkDerivation {
@@ -100664,14 +100117,15 @@ self: {
, filepath, fsnotify, http-conduit, http-types, HUnit, lrucache
, mtl, network, network-uri, pandoc, pandoc-citeproc, parsec
, process, QuickCheck, random, regex-base, regex-tdfa, resourcet
- , snap-core, snap-server, system-filepath, tagsoup, test-framework
- , test-framework-hunit, test-framework-quickcheck2, text, time
- , time-locale-compat, unordered-containers, utillinux, vector, yaml
+ , scientific, snap-core, snap-server, system-filepath, tagsoup
+ , test-framework, test-framework-hunit, test-framework-quickcheck2
+ , text, time, time-locale-compat, unordered-containers, utillinux
+ , vector, yaml
}:
mkDerivation {
pname = "hakyll";
- version = "4.8.3.0";
- sha256 = "d01a2ec0fbc3efffb6e7fcc2971842b6c6bd893327324cada0e345d3a5e504ef";
+ version = "4.8.3.1";
+ sha256 = "e56b4a1b73b5d1b394af9c9730a2baf6df93a8cfd72b0429af36253083fdfaa4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -100679,8 +100133,8 @@ self: {
cryptohash data-default deepseq directory filepath fsnotify
http-conduit http-types lrucache mtl network network-uri pandoc
pandoc-citeproc parsec process random regex-base regex-tdfa
- resourcet snap-core snap-server system-filepath tagsoup text time
- time-locale-compat unordered-containers vector yaml
+ resourcet scientific snap-core snap-server system-filepath tagsoup
+ text time time-locale-compat unordered-containers vector yaml
];
executableHaskellDepends = [ base directory filepath ];
testHaskellDepends = [
@@ -100688,9 +100142,10 @@ self: {
cryptohash data-default deepseq directory filepath fsnotify
http-conduit http-types HUnit lrucache mtl network network-uri
pandoc pandoc-citeproc parsec process QuickCheck random regex-base
- regex-tdfa resourcet snap-core snap-server system-filepath tagsoup
- test-framework test-framework-hunit test-framework-quickcheck2 text
- time time-locale-compat unordered-containers vector yaml
+ regex-tdfa resourcet scientific snap-core snap-server
+ system-filepath tagsoup test-framework test-framework-hunit
+ test-framework-quickcheck2 text time time-locale-compat
+ unordered-containers vector yaml
];
testToolDepends = [ utillinux ];
homepage = "http://jaspervdj.be/hakyll";
@@ -100763,6 +100218,42 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "hakyll-contrib-csv" = callPackage
+ ({ mkDerivation, base, blaze-html, bytestring, cassava, hakyll
+ , hspec, vector
+ }:
+ mkDerivation {
+ pname = "hakyll-contrib-csv";
+ version = "0.1.0.2";
+ sha256 = "b7deef8642a4da8194878c4b32b13925bd9e9ea5edfce68e870383a18b4f0def";
+ libraryHaskellDepends = [
+ base blaze-html bytestring cassava hakyll vector
+ ];
+ testHaskellDepends = [ base blaze-html bytestring cassava hspec ];
+ homepage = "https://github.com/narrative/hakyll-contrib-csv#readme";
+ description = "Generate Html tables from Csv files";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "hakyll-contrib-elm" = callPackage
+ ({ mkDerivation, base, bytestring, directory, hakyll, process
+ , temporary
+ }:
+ mkDerivation {
+ pname = "hakyll-contrib-elm";
+ version = "0.1.0.1";
+ sha256 = "8bcb079e6b599059a17672b8664036d07775c3870cd1840d9bf09d5ebbfbf42b";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring directory hakyll process temporary
+ ];
+ executableHaskellDepends = [ base hakyll ];
+ homepage = "https://github.com/narrative/hakyll-contrib-elm#readme";
+ description = "Compile Elm code for inclusion in Hakyll static site";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"hakyll-contrib-hyphenation" = callPackage
({ mkDerivation, base, hakyll, hyphenation, split, tagsoup }:
mkDerivation {
@@ -103699,23 +103190,27 @@ self: {
}) {};
"haskell-gi" = callPackage
- ({ mkDerivation, base, bytestring, containers, directory
- , file-embed, filepath, free, glib, gobjectIntrospection
- , haskell-gi-base, mtl, pretty-show, process, safe, text
- , transformers, xdg-basedir, xml-conduit
+ ({ mkDerivation, base, bytestring, Cabal, containers, directory
+ , file-embed, filepath, glib, gobjectIntrospection, haskell-gi-base
+ , mtl, pretty-show, process, safe, text, transformers, xdg-basedir
+ , xml-conduit
}:
mkDerivation {
pname = "haskell-gi";
- version = "0.13";
- sha256 = "657c8b2b1a466fbbcb21d348bf0c4ab27f0415e73e18b611efc997560a161680";
- isLibrary = false;
+ version = "0.17";
+ sha256 = "9c833a65889a888e1aecfff27a86f4cf3404a41a23e0be7699f2058b8accec08";
+ isLibrary = true;
isExecutable = true;
- executableHaskellDepends = [
- base bytestring containers directory file-embed filepath free
+ libraryHaskellDepends = [
+ base bytestring Cabal containers directory file-embed filepath
haskell-gi-base mtl pretty-show process safe text transformers
xdg-basedir xml-conduit
];
- executablePkgconfigDepends = [ glib gobjectIntrospection ];
+ libraryPkgconfigDepends = [ glib gobjectIntrospection ];
+ executableHaskellDepends = [
+ base containers directory filepath haskell-gi-base pretty-show text
+ ];
+ jailbreak = true;
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "Generate Haskell bindings for GObject Introspection capable libraries";
license = stdenv.lib.licenses.lgpl21;
@@ -103728,8 +103223,8 @@ self: {
}:
mkDerivation {
pname = "haskell-gi-base";
- version = "0.13";
- sha256 = "57c33125b0fac446007b7cc6ea5d0d853bcdf725cdca8028c879561d977d0363";
+ version = "0.15";
+ sha256 = "b7c622d428fe2369f20dfba9a02fd9d29366ab9a3949a22486d46a4abf70bb37";
libraryHaskellDepends = [
base bytestring containers text transformers
];
@@ -103740,6 +103235,24 @@ self: {
hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ];
}) {inherit (pkgs) glib;};
+ "haskell-gi-base_0_17" = callPackage
+ ({ mkDerivation, base, bytestring, containers, glib, text
+ , transformers
+ }:
+ mkDerivation {
+ pname = "haskell-gi-base";
+ version = "0.17";
+ sha256 = "fba8d755d1772cd0e01f7e8e7ac939d5bde9646d6493516c561484853ff77b76";
+ libraryHaskellDepends = [
+ base bytestring containers text transformers
+ ];
+ libraryPkgconfigDepends = [ glib ];
+ homepage = "https://github.com/haskell-gi/haskell-gi-base";
+ description = "Foundation for libraries generated by haskell-gi";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) glib;};
+
"haskell-import-graph" = callPackage
({ mkDerivation, base, classy-prelude, ghc, graphviz, process, text
, transformers
@@ -103776,27 +103289,27 @@ self: {
"haskell-kubernetes" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, either
- , http-types, lens, network-uri, QuickCheck, quickcheck-instances
- , scientific, servant, servant-client, servant-mock, servant-server
- , split, text, transformers, unordered-containers, vector, wai
- , warp
+ , http-api-data, http-types, lens, network-uri, QuickCheck
+ , quickcheck-instances, scientific, servant, servant-client
+ , servant-server, split, text, transformers, unordered-containers
+ , vector, wai
}:
mkDerivation {
pname = "haskell-kubernetes";
- version = "0.3.2";
- sha256 = "9b45cedeab51c823a31e868096e889b72ea1f0c2035f52d17d12148892a79591";
+ version = "0.4.0";
+ sha256 = "38cc46fc4540be0c3b3eb0dab282d549f91d45f64856b7f8b9e32dbf7c51b6c0";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson base bytestring containers either http-types lens network-uri
- QuickCheck quickcheck-instances scientific servant servant-client
- servant-server split text unordered-containers vector wai
+ aeson base bytestring containers either http-api-data http-types
+ lens network-uri QuickCheck quickcheck-instances scientific servant
+ servant-client servant-server split text unordered-containers
+ vector wai
];
executableHaskellDepends = [
- base either network-uri QuickCheck servant servant-client
- servant-mock servant-server split transformers warp
+ base either network-uri QuickCheck servant servant-client split
+ transformers
];
- jailbreak = true;
homepage = "https://github.com/soundcloud/haskell-kubernetes";
description = "Haskell bindings to the Kubernetes API (via swagger-codegen)";
license = stdenv.lib.licenses.mit;
@@ -107334,7 +106847,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "haxr" = callPackage
+ "haxr_3000_11_1_4" = callPackage
({ mkDerivation, array, base, base-compat, base64-bytestring
, blaze-builder, bytestring, HaXml, HsOpenSSL, http-streams
, http-types, io-streams, mtl, mtl-compat, network, network-uri
@@ -107353,6 +106866,28 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/HaXR";
description = "XML-RPC client and server library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "haxr" = callPackage
+ ({ mkDerivation, array, base, base-compat, base64-bytestring
+ , blaze-builder, bytestring, HaXml, HsOpenSSL, http-streams
+ , http-types, io-streams, mtl, mtl-compat, network, network-uri
+ , old-locale, old-time, template-haskell, time, utf8-string
+ }:
+ mkDerivation {
+ pname = "haxr";
+ version = "3000.11.1.5";
+ sha256 = "33df429fb13b05bbf099ceb9c8753078ee8e3fdf6692152e67ba0326e7cd8e69";
+ libraryHaskellDepends = [
+ array base base-compat base64-bytestring blaze-builder bytestring
+ HaXml HsOpenSSL http-streams http-types io-streams mtl mtl-compat
+ network network-uri old-locale old-time template-haskell time
+ utf8-string
+ ];
+ homepage = "http://www.haskell.org/haskellwiki/HaXR";
+ description = "XML-RPC client and server library";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"haxr-th" = callPackage
@@ -107455,14 +106990,20 @@ self: {
}:
mkDerivation {
pname = "hbayes";
- version = "0.5";
- sha256 = "6980ffee8b65dd1710759268ef1d869c50916ebe735c8d28e5cecb52158412fe";
+ version = "0.5.2";
+ sha256 = "c284e97dd276ed5371dee4b53da9e124adb4e958cd89d6d9ca1b27b506e416f5";
libraryHaskellDepends = [
array base binary boxes containers directory filepath gamma HUnit
mtl mwc-random parsec pretty QuickCheck random split statistics
test-framework test-framework-hunit test-framework-quickcheck2
vector
];
+ testHaskellDepends = [
+ array base binary boxes containers directory filepath gamma HUnit
+ mtl mwc-random parsec pretty QuickCheck random split statistics
+ test-framework test-framework-hunit test-framework-quickcheck2
+ vector
+ ];
homepage = "http://www.alpheccar.org";
description = "Bayesian Networks";
license = stdenv.lib.licenses.bsd3;
@@ -108155,7 +107696,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hdevtools" = callPackage
+ "hdevtools_0_1_3_0" = callPackage
({ mkDerivation, base, bin-package-db, Cabal, cmdargs, directory
, filepath, ghc, ghc-paths, network, process, syb, time
, transformers, unix
@@ -108173,6 +107714,27 @@ self: {
homepage = "https://github.com/hdevtools/hdevtools/";
description = "Persistent GHC powered background server for FAST haskell development tools";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hdevtools" = callPackage
+ ({ mkDerivation, base, bin-package-db, Cabal, cmdargs, directory
+ , filepath, ghc, ghc-paths, network, process, syb, time
+ , transformers, unix
+ }:
+ mkDerivation {
+ pname = "hdevtools";
+ version = "0.1.3.1";
+ sha256 = "3858ad140f5a2f1a3fae7c4ada811f6b096d1c295947ec18f8202765ab05b0d5";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base bin-package-db Cabal cmdargs directory filepath ghc ghc-paths
+ network process syb time transformers unix
+ ];
+ homepage = "https://github.com/hdevtools/hdevtools/";
+ description = "Persistent GHC powered background server for FAST haskell development tools";
+ license = stdenv.lib.licenses.mit;
}) {};
"hdf" = callPackage
@@ -108759,23 +108321,24 @@ self: {
}) {};
"hedn" = callPackage
- ({ mkDerivation, attoparsec, base, bytestring, containers, deepseq
- , hspec, HUnit, mtl, old-locale, QuickCheck, stringsearch
- , template-haskell, text, time, utf8-string, vector
+ ({ mkDerivation, attoparsec, base, base-compat, bytestring
+ , containers, deepseq, hspec, HUnit, mtl, QuickCheck, scientific
+ , stringsearch, template-haskell, text, time, time-locale-compat
+ , utf8-string, vector
}:
mkDerivation {
pname = "hedn";
- version = "0.1.8.1";
- sha256 = "21a73512dae8076ef6fbd6427cf07d55dc29895307c70f6dbb09a78265b3278b";
+ version = "0.1.8.2";
+ sha256 = "2f8ae0ddaa65133f971e75106ef4f408bc7e8c439b9ce46117352c566efec195";
libraryHaskellDepends = [
- attoparsec base bytestring containers deepseq mtl old-locale
- stringsearch text time utf8-string vector
+ attoparsec base base-compat bytestring containers deepseq mtl
+ scientific stringsearch text time time-locale-compat utf8-string
+ vector
];
testHaskellDepends = [
base bytestring containers hspec HUnit QuickCheck template-haskell
text time vector
];
- jailbreak = true;
homepage = "https://bitbucket.org/dpwiz/hedn";
description = "EDN parsing and encoding";
license = stdenv.lib.licenses.bsd3;
@@ -110536,7 +110099,7 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs) hidapi;};
- "hidapi" = callPackage
+ "hidapi_0_1_3" = callPackage
({ mkDerivation, base, bytestring, deepseq-generics, systemd }:
mkDerivation {
pname = "hidapi";
@@ -110547,6 +110110,24 @@ self: {
homepage = "https://github.com/vahokif/haskell-hidapi";
description = "Haskell bindings to HIDAPI";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) systemd;};
+
+ "hidapi" = callPackage
+ ({ mkDerivation, base, bytestring, deepseq, deepseq-generics
+ , systemd
+ }:
+ mkDerivation {
+ pname = "hidapi";
+ version = "0.1.4";
+ sha256 = "fc40ea58320f9f1459a8da6463419bb15930d2e6d8273d5592cde509d4c96a75";
+ libraryHaskellDepends = [
+ base bytestring deepseq deepseq-generics
+ ];
+ librarySystemDepends = [ systemd ];
+ homepage = "https://github.com/vahokif/haskell-hidapi";
+ description = "Haskell bindings to HIDAPI";
+ license = stdenv.lib.licenses.mit;
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {inherit (pkgs) systemd;};
@@ -111406,6 +110987,8 @@ self: {
pname = "hint";
version = "0.4.2.2";
sha256 = "dc806797435029b37f903ba482fa526cb0dbe34264a607d2dfbda38b79b564bf";
+ revision = "1";
+ editedCabalFile = "71372424c0852193d691c47ac2c0e484859cb23c98d3c4cb37fdb56207df37e8";
libraryHaskellDepends = [
base directory exceptions extensible-exceptions filepath ghc
ghc-mtl ghc-paths mtl random unix
@@ -111428,6 +111011,8 @@ self: {
pname = "hint";
version = "0.4.2.3";
sha256 = "cf2b3f98ba6929e2e79dfc373e101ee6ae1711a5706e718cf0152733da4a40b7";
+ revision = "1";
+ editedCabalFile = "8f1b08cddd4732f8eb39a9f09a6d17abb876a08f33895ce4556b510a9fe9297b";
libraryHaskellDepends = [
base directory exceptions extensible-exceptions filepath ghc
ghc-mtl ghc-paths mtl random unix
@@ -111451,6 +111036,8 @@ self: {
pname = "hint";
version = "0.4.3";
sha256 = "5f66ecbd8e36b4c277c9a8603f1218bf6fbfab086a5deeeeb5713a2903af7ddb";
+ revision = "1";
+ editedCabalFile = "5ec7a16566d97f99946253026d802be67412e8636e96fdb0fed9b59e29f6d231";
libraryHaskellDepends = [
base directory exceptions extensible-exceptions filepath ghc
ghc-mtl ghc-paths mtl random unix
@@ -111474,6 +111061,8 @@ self: {
pname = "hint";
version = "0.5.1";
sha256 = "c774c56859366ead6fa88605bd69dad6314cc3c1f4fb732a1910cd9d17ca1666";
+ revision = "1";
+ editedCabalFile = "669d7ee5232fd30ef8a6093a5ee2e7c1cec87f8b10a73d356659b0e2a553c40c";
libraryHaskellDepends = [
base directory exceptions filepath ghc ghc-paths mtl random unix
];
@@ -112252,30 +111841,24 @@ self: {
"hjsonschema" = callPackage
({ mkDerivation, aeson, async, base, bytestring, containers
, directory, file-embed, filepath, hjsonpointer, http-client
- , http-types, HUnit, QuickCheck, regexpr, scientific, semigroups
+ , http-types, HUnit, pcre-heavy, QuickCheck, scientific, semigroups
, tasty, tasty-hunit, tasty-quickcheck, text, unordered-containers
, vector, wai-app-static, warp
}:
mkDerivation {
pname = "hjsonschema";
- version = "0.9.0.0";
- sha256 = "08367763571d49f3e0ec67b04143bf3196dcc217ffb4811af887b114b04b035a";
- isLibrary = true;
- isExecutable = true;
+ version = "0.10.0.1";
+ sha256 = "129b1caff1d64121fc58852bc3ff6a87e7c0ba3dff75c037089d03aa4d3fd252";
libraryHaskellDepends = [
- aeson base bytestring containers file-embed hjsonpointer
- http-client http-types QuickCheck regexpr scientific semigroups
+ aeson base bytestring containers file-embed filepath hjsonpointer
+ http-client http-types pcre-heavy QuickCheck scientific semigroups
text unordered-containers vector
];
- executableHaskellDepends = [
- aeson base hjsonpointer text unordered-containers vector
- ];
testHaskellDepends = [
aeson async base bytestring directory filepath hjsonpointer HUnit
- QuickCheck tasty tasty-hunit tasty-quickcheck text
+ QuickCheck semigroups tasty tasty-hunit tasty-quickcheck text
unordered-containers vector wai-app-static warp
];
- jailbreak = true;
homepage = "https://github.com/seagreen/hjsonschema";
description = "JSON Schema library";
license = stdenv.lib.licenses.mit;
@@ -112502,7 +112085,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hledger_0_26" = callPackage
+ "hledger" = callPackage
({ mkDerivation, base, base-compat, cmdargs, containers, csv
, directory, filepath, haskeline, hledger-lib, HUnit, mtl
, mtl-compat, old-time, parsec, pretty-show, process, regex-tdfa
@@ -112534,14 +112117,12 @@ self: {
pretty-show process regex-tdfa safe shakespeare split tabular
test-framework test-framework-hunit text time transformers wizards
];
- jailbreak = true;
homepage = "http://hledger.org";
description = "The main command-line interface for the hledger accounting tool";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hledger" = callPackage
+ "hledger_0_27" = callPackage
({ mkDerivation, base, base-compat, cmdargs, containers, csv
, directory, filepath, haskeline, hledger-lib, HUnit, mtl
, mtl-compat, old-time, parsec, pretty-show, process, regex-tdfa
@@ -112553,6 +112134,8 @@ self: {
pname = "hledger";
version = "0.27";
sha256 = "0aecdf586a46c24d6d67659157d1edbfc0d78afb50ea7cfbec1a01bf86b792b0";
+ revision = "2";
+ editedCabalFile = "11f159f1c15ef44a6989491ab9fb921163fdf6107ef5f2dd6046ee143a42909a";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -112574,9 +112157,11 @@ self: {
terminfo test-framework test-framework-hunit text time
unordered-containers utf8-string wizards
];
+ jailbreak = true;
homepage = "http://hledger.org";
description = "Command-line interface for the hledger accounting tool";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hledger-chart" = callPackage
@@ -112733,7 +112318,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hledger-lib_0_26" = callPackage
+ "hledger-lib" = callPackage
({ mkDerivation, array, base, base-compat, blaze-markup, bytestring
, cmdargs, containers, csv, Decimal, directory, filepath, HUnit
, mtl, mtl-compat, old-time, parsec, pretty-show, regex-tdfa, safe
@@ -112758,10 +112343,9 @@ self: {
homepage = "http://hledger.org";
description = "Core data types, parsers and utilities for the hledger accounting tool";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hledger-lib" = callPackage
+ "hledger-lib_0_27" = callPackage
({ mkDerivation, array, base, base-compat, blaze-markup, bytestring
, cmdargs, containers, csv, Decimal, deepseq, directory, filepath
, HUnit, mtl, mtl-compat, old-time, parsec, pretty-show, regex-tdfa
@@ -112772,6 +112356,8 @@ self: {
pname = "hledger-lib";
version = "0.27";
sha256 = "77c47900106e65411743097cd0855b5484e1439b0de4c5ee6d2a0c5748672606";
+ revision = "2";
+ editedCabalFile = "5cf2490d88e00c2e2d26824b85ea8a4215e73adb7acfcd668d2c0afc298fe811";
libraryHaskellDepends = [
array base base-compat blaze-markup bytestring cmdargs containers
csv Decimal deepseq directory filepath HUnit mtl mtl-compat
@@ -112787,6 +112373,32 @@ self: {
homepage = "http://hledger.org";
description = "Core data types, parsers and functionality for the hledger accounting tools";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hledger-ui_0_27_3" = callPackage
+ ({ mkDerivation, base, base-compat, brick, cmdargs, containers
+ , data-default, filepath, hledger, hledger-lib, HUnit, lens
+ , pretty-show, safe, split, time, transformers, vector, vty
+ }:
+ mkDerivation {
+ pname = "hledger-ui";
+ version = "0.27.3";
+ sha256 = "87dcd09479acc3e84a883d427c988a110451dee75a5e1f1c9d5ea2b34e99c4c1";
+ revision = "2";
+ editedCabalFile = "e64d711334b66bd07371739fbec673ea9c60259e754f06b4edbef8c763140b1f";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base base-compat brick cmdargs containers data-default filepath
+ hledger hledger-lib HUnit lens pretty-show safe split time
+ transformers vector vty
+ ];
+ jailbreak = true;
+ homepage = "http://hledger.org";
+ description = "Curses-style user interface for the hledger accounting tool";
+ license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hledger-ui" = callPackage
@@ -112796,10 +112408,10 @@ self: {
}:
mkDerivation {
pname = "hledger-ui";
- version = "0.27.3";
- sha256 = "87dcd09479acc3e84a883d427c988a110451dee75a5e1f1c9d5ea2b34e99c4c1";
+ version = "0.27.4";
+ sha256 = "c99544721f630fb561f5f44e9b0295db991b59a6222b66f38696fef90fec377d";
revision = "1";
- editedCabalFile = "eac7bd60f3e8f1ff44ed1e41716080df6a8e0533779963aa2a43b18a79121ef0";
+ editedCabalFile = "81550a378ff933ffa25d68417b3d62f895197c7b36b363a0e95fb25bf35dbdcd";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -112807,6 +112419,7 @@ self: {
hledger hledger-lib HUnit lens pretty-show safe split time
transformers vector vty
];
+ jailbreak = true;
homepage = "http://hledger.org";
description = "Curses-style user interface for the hledger accounting tool";
license = "GPL";
@@ -112871,7 +112484,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hledger-web_0_26" = callPackage
+ "hledger-web" = callPackage
({ mkDerivation, base, base-compat, blaze-html, blaze-markup
, bytestring, clientsession, cmdargs, conduit-extra, data-default
, directory, filepath, hjsmin, hledger, hledger-lib, hspec
@@ -112903,14 +112516,12 @@ self: {
yesod-static
];
testHaskellDepends = [ base base-compat hspec yesod yesod-test ];
- jailbreak = true;
homepage = "http://hledger.org";
description = "A web interface for the hledger accounting tool";
license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hledger-web" = callPackage
+ "hledger-web_0_27" = callPackage
({ mkDerivation, base, base-compat, blaze-html, blaze-markup
, bytestring, clientsession, cmdargs, conduit-extra, data-default
, directory, filepath, hjsmin, hledger, hledger-lib, hspec
@@ -112949,9 +112560,11 @@ self: {
wai-extra wai-handler-launch warp yaml yesod yesod-core yesod-form
yesod-static yesod-test
];
+ jailbreak = true;
homepage = "http://hledger.org";
description = "Web interface for the hledger accounting tool";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hlibBladeRF" = callPackage
@@ -113789,8 +113402,8 @@ self: {
({ mkDerivation, base, hmatrix, QuadProgpp, vector }:
mkDerivation {
pname = "hmatrix-quadprogpp";
- version = "0.2.0.2";
- sha256 = "83c5fd9f3ce2cde9fbad74d6d54b446548e36575f64540e1cbf6f678bcefda0b";
+ version = "0.3.0.0";
+ sha256 = "fd11ea7d5dca8e703a5b0b80832883f27d2dd3941d19171b0f05a163d68b31fb";
libraryHaskellDepends = [ base hmatrix vector ];
librarySystemDepends = [ QuadProgpp ];
description = "Bindings to the QuadProg++ quadratic programming library";
@@ -116010,15 +115623,14 @@ self: {
}:
mkDerivation {
pname = "hothasktags";
- version = "0.3.5";
- sha256 = "6f0ed1707e5470aacef8e8ab959f430e356a05a0ed40b4b0a37c176cc3a89426";
+ version = "0.3.6";
+ sha256 = "61ecdad57c8017d75b8f5fa159a0577a6aa3e9c6ec8818adadf69b2131bb6007";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
array base containers cpphs filemanip filepath Glob
haskell-src-exts optparse-applicative split
];
- jailbreak = true;
homepage = "http://github.com/luqui/hothasktags";
description = "Generates ctags for Haskell, incorporating import lists and qualified imports";
license = stdenv.lib.licenses.bsd3;
@@ -116438,16 +116050,16 @@ self: {
"hpath" = callPackage
({ mkDerivation, base, bytestring, deepseq, doctest, exceptions
- , hspec, HUnit, process, QuickCheck, unix, unix-bytestring
- , utf8-string, word8
+ , hspec, HUnit, process, QuickCheck, simple-sendfile, unix
+ , unix-bytestring, utf8-string, word8
}:
mkDerivation {
pname = "hpath";
- version = "0.6.0";
- sha256 = "bbd8a996e6328274a19943b884fbeca6790df955775ac6f0be6575f25b310404";
+ version = "0.7.0";
+ sha256 = "5e13502321eab493d9755264ce4941500fe4c3d28fb2237da2c700a594bd3324";
libraryHaskellDepends = [
- base bytestring deepseq exceptions hspec unix unix-bytestring
- utf8-string word8
+ base bytestring deepseq exceptions hspec simple-sendfile unix
+ unix-bytestring utf8-string word8
];
testHaskellDepends = [
base bytestring doctest hspec HUnit process QuickCheck unix
@@ -117177,8 +116789,8 @@ self: {
}:
mkDerivation {
pname = "hruby";
- version = "0.3.2";
- sha256 = "bac4446634deb4acb91217b016c2be04dc8006df7ba4245c2c03dd686bf64fd8";
+ version = "0.3.3";
+ sha256 = "3a13abdd06e07ef2705740aad27d8d23eeabb221155042c61a2341a141e15f94";
libraryHaskellDepends = [
aeson attoparsec base bytestring scientific stm text
unordered-containers vector
@@ -118730,7 +118342,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "hsebaysdk" = callPackage
+ "hsebaysdk_0_3_1_0" = callPackage
({ mkDerivation, aeson, base, bytestring, http-client, http-types
, text, time, transformers, unordered-containers
}:
@@ -118745,6 +118357,24 @@ self: {
homepage = "https://github.com/creichert/hsebaysdk";
description = "Haskell eBay SDK";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hsebaysdk" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, http-client, http-types
+ , text, time, transformers, unordered-containers
+ }:
+ mkDerivation {
+ pname = "hsebaysdk";
+ version = "0.4.0.0";
+ sha256 = "0738d0df113b15bb9148ecbe02f0a34562c557d8f64b65065122925e29df8901";
+ libraryHaskellDepends = [
+ aeson base bytestring http-client http-types text time transformers
+ unordered-containers
+ ];
+ homepage = "https://github.com/creichert/hsebaysdk";
+ description = "Haskell eBay SDK";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"hsemail" = callPackage
@@ -120529,6 +120159,8 @@ self: {
pname = "hspec-megaparsec";
version = "0.1.0";
sha256 = "8fa6c28728fe8f9df354d81dccf3395160c74b28b0c9be9dcfc81f91fc331cfa";
+ revision = "1";
+ editedCabalFile = "19d6092404bbc86a39aa926e96a2809afcfb418fc8914342b4ee5f1d9e7971a0";
libraryHaskellDepends = [ base hspec-expectations megaparsec ];
testHaskellDepends = [ base hspec hspec-expectations megaparsec ];
homepage = "https://github.com/mrkkrp/hspec-megaparsec";
@@ -120543,6 +120175,8 @@ self: {
pname = "hspec-megaparsec";
version = "0.1.1";
sha256 = "4ff4683bdff9a3b0ba8a6ee1adfce01f30f8515f9db487b062e5e00e5a2795c5";
+ revision = "1";
+ editedCabalFile = "b5268defe9e8230440bef693c63fb7a22e1ff53b39373a040fb511714056cfb8";
libraryHaskellDepends = [ base hspec-expectations megaparsec ];
testHaskellDepends = [ base hspec hspec-expectations megaparsec ];
homepage = "https://github.com/mrkkrp/hspec-megaparsec";
@@ -120550,6 +120184,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hspec-megaparsec_0_2_0" = callPackage
+ ({ mkDerivation, base, containers, hspec, hspec-expectations
+ , megaparsec, semigroups
+ }:
+ mkDerivation {
+ pname = "hspec-megaparsec";
+ version = "0.2.0";
+ sha256 = "586ae04377a4d98431e0a639f0ce7d8adc5e9240036df63a22643c23c66eb565";
+ libraryHaskellDepends = [
+ base containers hspec-expectations megaparsec semigroups
+ ];
+ testHaskellDepends = [
+ base containers hspec hspec-expectations megaparsec semigroups
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/mrkkrp/hspec-megaparsec";
+ description = "Utility functions for testing Megaparsec parsers with Hspec";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hspec-meta_2_0_0" = callPackage
({ mkDerivation, ansi-terminal, async, base, deepseq, directory
, filepath, hspec-expectations, HUnit, QuickCheck, quickcheck-io
@@ -124813,7 +124468,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "human-readable-duration" = callPackage
+ "human-readable-duration_0_2_0_0" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "human-readable-duration";
@@ -124823,6 +124478,20 @@ self: {
homepage = "http://github.com/yogsototh/human-readable-duration#readme";
description = "Provide duration helper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "human-readable-duration" = callPackage
+ ({ mkDerivation, base, doctest, time }:
+ mkDerivation {
+ pname = "human-readable-duration";
+ version = "0.2.0.1";
+ sha256 = "082524e9d29fd4cc06b75ab646df47fdd40bc95a8bf4c315806408d215ebc0b4";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base doctest time ];
+ homepage = "http://github.com/yogsototh/human-readable-duration#readme";
+ description = "Provide duration helper";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"hums" = callPackage
@@ -125285,7 +124954,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "hw-json_0_0_0_3" = callPackage
+ "hw-json_0_0_0_4" = callPackage
({ mkDerivation, array, attoparsec, base, bytestring, conduit
, containers, criterion, hspec, hw-bits, hw-conduit, hw-diagnostics
, hw-parser, hw-prim, hw-rankselect, mmap, mono-traversable, parsec
@@ -125293,8 +124962,8 @@ self: {
}:
mkDerivation {
pname = "hw-json";
- version = "0.0.0.3";
- sha256 = "873af674982dd9edb44522ddb99144e902cf2b9baf3091ca68619c24d680326e";
+ version = "0.0.0.4";
+ sha256 = "406176d9b42871b480252985fc64feb3ae9a36032068a2c0cc622969fb600c2e";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -125341,6 +125010,8 @@ self: {
pname = "hw-prim";
version = "0.0.0.10";
sha256 = "641a1da0488664d12438f396f08577e02f9ca43b53a6f00e52085f63a5ab776e";
+ revision = "1";
+ editedCabalFile = "6d483e45f5a7b11173cfe33c92acfd22e54c715378d7bd56ccf509b9110ac6f4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base bytestring random vector ];
@@ -125351,14 +125022,14 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "hw-prim_0_0_0_11" = callPackage
+ "hw-prim_0_0_1_1" = callPackage
({ mkDerivation, base, bytestring, hspec, QuickCheck, random
, vector
}:
mkDerivation {
pname = "hw-prim";
- version = "0.0.0.11";
- sha256 = "6d9c2bb19313e5995dff5de36438ff3ae5632478631bdb66d65eca2397469015";
+ version = "0.0.1.1";
+ sha256 = "73b82ac03c23d438560fbf28e476f0e8c55f1386cf53d68086591925255bee37";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base bytestring random vector ];
@@ -125389,13 +125060,13 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "hw-rankselect_0_0_0_3" = callPackage
+ "hw-rankselect_0_0_0_4" = callPackage
({ mkDerivation, base, hspec, hw-bits, hw-prim, QuickCheck, vector
}:
mkDerivation {
pname = "hw-rankselect";
- version = "0.0.0.3";
- sha256 = "d00344eb9e7f8ae778551eb43cd37717d508b6d8b1fde4b554eaa6c5bd04efab";
+ version = "0.0.0.4";
+ sha256 = "6f6ccc16ccbc3c358489550a4e7122256bd96e80def74e27368d4858e6a71ca6";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base hw-bits hw-prim vector ];
@@ -126462,19 +126133,16 @@ self: {
}) {};
"hylogen" = callPackage
- ({ mkDerivation, base, bytestring, containers, filepath, fsnotify
- , hashable, http-types, mtl, process, text, vector-space, wai, warp
- , websockets
+ ({ mkDerivation, base, bytestring, data-reify, filepath, fsnotify
+ , http-types, process, text, vector-space, wai, warp, websockets
}:
mkDerivation {
pname = "hylogen";
- version = "0.1.0.12";
- sha256 = "b8906eb87088336087918208b9735259b7b5116565461ecd0333f09d46f420a9";
+ version = "0.1.1.3";
+ sha256 = "b2f0475f4efb5fee7f48fd381eebd482cad0815e2360cf6d8d80faa504d726b3";
isLibrary = true;
isExecutable = true;
- libraryHaskellDepends = [
- base containers hashable mtl vector-space
- ];
+ libraryHaskellDepends = [ base data-reify vector-space ];
executableHaskellDepends = [
base bytestring filepath fsnotify http-types process text wai warp
websockets
@@ -127788,25 +127456,25 @@ self: {
}) {};
"idris" = callPackage
- ({ mkDerivation, annotated-wl-pprint, ansi-terminal, ansi-wl-pprint
- , async, base, base64-bytestring, binary, blaze-html, blaze-markup
- , bytestring, cheapskate, containers, deepseq, directory, filepath
- , fingertree, fsnotify, gmp, haskeline, ieee754, libffi, mtl
- , network, optparse-applicative, parsers, pretty, process, safe
- , split, terminal-size, text, time, transformers
- , transformers-compat, trifecta, uniplate, unix
+ ({ mkDerivation, aeson, annotated-wl-pprint, ansi-terminal
+ , ansi-wl-pprint, async, base, base64-bytestring, binary
+ , blaze-html, blaze-markup, bytestring, cheapskate, containers
+ , deepseq, directory, filepath, fingertree, fsnotify, gmp
+ , haskeline, ieee754, libffi, mtl, network, optparse-applicative
+ , parsers, pretty, process, safe, split, terminal-size, text, time
+ , transformers, transformers-compat, trifecta, uniplate, unix
, unordered-containers, utf8-string, vector
, vector-binary-instances, zip-archive
}:
mkDerivation {
pname = "idris";
- version = "0.11.1";
- sha256 = "51df8882aa778000833127a64b319aba07f712fe6e41033af401fbf99c08b964";
+ version = "0.11.2";
+ sha256 = "4120eec85e07dc9e96835fc5226f4d8044b2401c0c007987465d906db7773fad";
configureFlags = [ "-fcurses" "-fffi" "-fgmp" ];
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- annotated-wl-pprint ansi-terminal ansi-wl-pprint async base
+ aeson annotated-wl-pprint ansi-terminal ansi-wl-pprint async base
base64-bytestring binary blaze-html blaze-markup bytestring
cheapskate containers deepseq directory filepath fingertree
fsnotify haskeline ieee754 libffi mtl network optparse-applicative
@@ -128512,6 +128180,19 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "ilist" = callPackage
+ ({ mkDerivation, base, hspec, transformers }:
+ mkDerivation {
+ pname = "ilist";
+ version = "0.1.0.0";
+ sha256 = "777054a8ffdde4b8030bd4ec20bc904216b72ad976472d7fd4f16fee92d8d121";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base hspec transformers ];
+ homepage = "http://github.com/aelve/ilist";
+ description = "Optimised list functions for doing index-related things";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"illuminate" = callPackage
({ mkDerivation, alex, array, base, containers, filemanip, filepath
, hscolour, html, utf8-string, xhtml
@@ -129453,8 +129134,8 @@ self: {
}:
mkDerivation {
pname = "influxdb";
- version = "0.9.1.3";
- sha256 = "9daff640a386d2b94818b50d0b82546f497c4139856d405d18b648914a14096c";
+ version = "0.10.0";
+ sha256 = "063754458bbceb4a89e70c26a979f47e2c632a0ccaf93b53360870d44c5268bb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -129469,7 +129150,6 @@ self: {
base http-client HUnit mtl tasty tasty-hunit tasty-quickcheck
tasty-th text vector
];
- jailbreak = true;
homepage = "https://github.com/maoe/influxdb-haskell";
description = "Haskell client library for InfluxDB";
license = stdenv.lib.licenses.bsd3;
@@ -129590,6 +129270,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "ini_0_3_5" = callPackage
+ ({ mkDerivation, attoparsec, base, text, unordered-containers }:
+ mkDerivation {
+ pname = "ini";
+ version = "0.3.5";
+ sha256 = "bfd3836dfe38440987ce53f7eeffee00b54e3b7e4c0cd81ba315932cd7562cc6";
+ libraryHaskellDepends = [
+ attoparsec base text unordered-containers
+ ];
+ homepage = "http://github.com/chrisdone/ini";
+ description = "Quick and easy configuration files in the INI format";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"inilist" = callPackage
({ mkDerivation, base, bifunctors, containers, deepseq, HUnit, safe
, tasty, tasty-hunit, testpack, trifecta
@@ -129851,6 +129546,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "instance-control" = callPackage
+ ({ mkDerivation, base, mtl, transformers }:
+ mkDerivation {
+ pname = "instance-control";
+ version = "0.1.0.0";
+ sha256 = "bcdd6aa0322f757c32815407a8798c2e41245e1c76c4ea0890aa04c77847ee7c";
+ libraryHaskellDepends = [ base mtl transformers ];
+ homepage = "https://github.com/lazac/instance-control";
+ description = "Controls how the compiler searches for instances using type families";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"instant-aeson" = callPackage
({ mkDerivation, aeson, base, instant-generics, tasty
, tasty-quickcheck
@@ -130165,6 +129872,29 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "intero" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers, directory
+ , filepath, ghc, ghc-paths, haskeline, hspec, process, syb
+ , temporary, time, transformers, unix
+ }:
+ mkDerivation {
+ pname = "intero";
+ version = "0.1.8";
+ sha256 = "3fa0c78d8707a8e9fe335bf81f78a2eac7e60ec8430cfbd0afdc508738d96f4d";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ array base bytestring containers directory filepath ghc ghc-paths
+ haskeline process syb time transformers unix
+ ];
+ testHaskellDepends = [
+ base directory hspec process temporary transformers
+ ];
+ homepage = "https://github.com/chrisdone/intero";
+ description = "Complete interactive development program for Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"interpol" = callPackage
({ mkDerivation, base, haskell-src-exts, HUnit, regex-posix, syb
, test-framework, test-framework-hunit
@@ -130822,8 +130552,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "ioref-stable";
- version = "0.1.0.0";
- sha256 = "9044897340c044e44d3a9c33b350523147a6a95a2f1c8fb410caee880ceba314";
+ version = "0.1.1.0";
+ sha256 = "f4f6c82ca430fb8aac93e48d95212aab9c41700af203ad0a74dcbd578e0991c7";
libraryHaskellDepends = [ base ];
homepage = "http://github.com/cocreature/ioref-stable#readme";
description = "iorefs with a unique stable index";
@@ -130856,6 +130586,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "ip" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, hashable, text }:
+ mkDerivation {
+ pname = "ip";
+ version = "0.3";
+ sha256 = "ec3ae6092c46a5249f5058d1b34484002e82077b6965dda761b94616b11c1470";
+ libraryHaskellDepends = [ aeson attoparsec base hashable text ];
+ homepage = "https://github.com/andrewthad/ip#readme";
+ description = "Library for IP and MAC addresses";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"ip-quoter" = callPackage
({ mkDerivation, base, cpu, network, tasty, tasty-hunit
, template-haskell
@@ -131354,6 +131096,7 @@ self: {
network regex-tdfa split stm text time tls transformers vty x509
x509-store x509-system x509-validation
];
+ jailbreak = true;
homepage = "https://github.com/glguy/irc-core";
description = "An IRC client library and text client";
license = stdenv.lib.licenses.bsd3;
@@ -133848,6 +133591,22 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "json-pointer-aeson" = callPackage
+ ({ mkDerivation, aeson, base-prelude, json-pointer
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "json-pointer-aeson";
+ version = "0.1";
+ sha256 = "b291114509843bae81251ee517d1dad5d7c904809417b35e17cc47eec04764d4";
+ libraryHaskellDepends = [
+ aeson base-prelude json-pointer unordered-containers vector
+ ];
+ homepage = "https://github.com/sannsyn/json-pointer-aeson";
+ description = "Integration layer for \"json-pointer\" and \"aeson\"";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"json-pointer-hasql" = callPackage
({ mkDerivation, aeson, base-prelude, either, hasql, json-pointer
, rebase, text, transformers
@@ -134481,8 +134240,8 @@ self: {
}:
mkDerivation {
pname = "jsontsv";
- version = "0.1.6.1";
- sha256 = "d84484e71b4fd577aafb4674fb5ba6f2aece4f3ed1eb152cef9b50d4cf025ef5";
+ version = "0.1.7.0";
+ sha256 = "fddad9ed97a9ad685d3f4a38e7b5b42f5ce964136232a6b2c9920ce3aa2b41bb";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -137328,8 +137087,8 @@ self: {
}:
mkDerivation {
pname = "lambdacube-gl";
- version = "0.5.0.3";
- sha256 = "ecdf2c200238b635a1d52cf2cf3d9cf29874cee46dadc3b62d7e1da3525a1510";
+ version = "0.5.0.5";
+ sha256 = "29f0094d25905a3c6aadc6dcfcc0c77664db589c7e30ee20e8216e40a4403250";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -137347,33 +137106,6 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
- "lambdacube-gl_0_5_0_4" = callPackage
- ({ mkDerivation, aeson, base, base64-bytestring, bytestring
- , containers, exceptions, GLFW-b, JuicyPixels, lambdacube-ir, mtl
- , network, OpenGLRaw, text, time, vector, vector-algorithms
- , websockets
- }:
- mkDerivation {
- pname = "lambdacube-gl";
- version = "0.5.0.4";
- sha256 = "9cda9d95d3938685a83531b3db3f9d6a32fe0fa685d94318bf6a94d159f820df";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base bytestring containers JuicyPixels lambdacube-ir mtl OpenGLRaw
- vector vector-algorithms
- ];
- executableHaskellDepends = [
- aeson base base64-bytestring bytestring containers exceptions
- GLFW-b JuicyPixels lambdacube-ir network OpenGLRaw text time vector
- websockets
- ];
- homepage = "http://lambdacube3d.com";
- description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"lambdacube-ir" = callPackage
({ mkDerivation, aeson, base, containers, mtl, text, vector }:
mkDerivation {
@@ -137913,8 +137645,8 @@ self: {
}:
mkDerivation {
pname = "language-c-quote";
- version = "0.11.6";
- sha256 = "db44ca0ff90af80ed915e60b471698c5f5b41ab562ed77ad68bcd912b7f82dc3";
+ version = "0.11.6.2";
+ sha256 = "bcfe78f7debd225d8a24e369fa593a8670d6c6db782e753fd3aa4cb72130a1ce";
libraryHaskellDepends = [
array base bytestring containers exception-mtl
exception-transformers filepath haskell-src-meta mainland-pretty
@@ -137959,8 +137691,8 @@ self: {
({ mkDerivation, base, mtl, parsec, pretty }:
mkDerivation {
pname = "language-dot";
- version = "0.0.9";
- sha256 = "e46a8fb501ba03548c9fa3df46f45c538abbaef1458f2d89e433b6ed44501d29";
+ version = "0.1.0";
+ sha256 = "15418f000c45efd129d98698d3258ff7996c66c7c9374072334868d2550b1581";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base mtl parsec pretty ];
@@ -138930,6 +138662,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "language-thrift_0_9_0_0" = callPackage
+ ({ mkDerivation, ansi-wl-pprint, base, hspec, hspec-discover
+ , megaparsec, QuickCheck, scientific, text, transformers
+ }:
+ mkDerivation {
+ pname = "language-thrift";
+ version = "0.9.0.0";
+ sha256 = "2ff3194365cd60f9e51d268864ad8d3c76669b0ec1c3e7d4286e843165654789";
+ libraryHaskellDepends = [
+ ansi-wl-pprint base megaparsec scientific text transformers
+ ];
+ testHaskellDepends = [
+ ansi-wl-pprint base hspec hspec-discover megaparsec QuickCheck text
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/abhinav/language-thrift#readme";
+ description = "Parser and pretty printer for the Thrift IDL format";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"language-typescript" = callPackage
({ mkDerivation, base, containers, parsec, pretty }:
mkDerivation {
@@ -140458,6 +140211,7 @@ self: {
ansi-wl-pprint base csv directory filemanip filepath hspec
natural-sort optparse-applicative parsec regex-tdfa
];
+ jailbreak = true;
homepage = "http://www.ariis.it/static/articles/lentil/page.html";
description = "frugal issue tracker";
license = stdenv.lib.licenses.gpl3;
@@ -141000,8 +140754,8 @@ self: {
}:
mkDerivation {
pname = "libgraph";
- version = "1.10";
- sha256 = "d5d6152c80ae8be8c43ff02f1e74ac114b734254426a289f2b89e5815f9f232f";
+ version = "1.11";
+ sha256 = "1ce20578fea025dfed6613bad8b64fa35ae7d49b2ffba0fce559d7eeafbe10c8";
libraryHaskellDepends = [
array base containers monads-tf process union-find
];
@@ -144328,16 +144082,16 @@ self: {
"logging" = callPackage
({ mkDerivation, base, binary, bytestring, fast-logger, hspec
- , lifted-base, monad-control, old-locale, pcre-light, text, time
+ , lifted-base, monad-control, old-locale, regex-compat, text, time
, time-locale-compat, transformers, unix
}:
mkDerivation {
pname = "logging";
- version = "3.0.2";
- sha256 = "72ae6d6fde21af8dd58031d0da054d12115c6cf6e64a4236150562d8f5c8818a";
+ version = "3.0.4";
+ sha256 = "a04db0375aef48c941a001c754d87d65a0df5e059efd9fcd54efc059570a7b62";
libraryHaskellDepends = [
base binary bytestring fast-logger lifted-base monad-control
- old-locale pcre-light text time time-locale-compat transformers
+ old-locale regex-compat text time time-locale-compat transformers
];
testHaskellDepends = [ base hspec unix ];
description = "Simplified logging in IO for application writers";
@@ -144491,8 +144245,8 @@ self: {
({ mkDerivation, base, logict, mtl, transformers }:
mkDerivation {
pname = "logict-state";
- version = "0.1.0.1";
- sha256 = "0d312387a11fab6441258732cfcb59bd12ac72471fd1379877f6da1928c60cbe";
+ version = "0.1.0.2";
+ sha256 = "7715a898f79742282a8cf2f047fc3f4c6d3095183d6830d68aaf36abc2c751ac";
libraryHaskellDepends = [ base logict mtl transformers ];
homepage = "https://github.com/atzedijkstra/logict-state";
description = "Library for logic programming based on haskell package logict";
@@ -145087,6 +144841,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "lua-bc" = callPackage
+ ({ mkDerivation, base, binary, bytestring, containers
+ , data-binary-ieee754, pretty, text, vector
+ }:
+ mkDerivation {
+ pname = "lua-bc";
+ version = "0.1";
+ sha256 = "518dcad6c16a870fe64d6d45ad83202dc9586a71dd976b652dfb5445150bd352";
+ libraryHaskellDepends = [
+ base binary bytestring containers data-binary-ieee754 pretty text
+ vector
+ ];
+ homepage = "https://github.com/GaloisInc/lua-bc";
+ description = "Lua bytecode parser";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"lua-bytecode" = callPackage
({ mkDerivation, array, base, bytestring, cereal, containers
, hashable, numeric-extras, vector
@@ -146660,7 +146431,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "managed" = callPackage
+ "managed_1_0_3" = callPackage
({ mkDerivation, base, transformers }:
mkDerivation {
pname = "managed";
@@ -146669,6 +146440,18 @@ self: {
libraryHaskellDepends = [ base transformers ];
description = "A monad for managed values";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "managed" = callPackage
+ ({ mkDerivation, base, transformers }:
+ mkDerivation {
+ pname = "managed";
+ version = "1.0.4";
+ sha256 = "1b6c9eb9fea0266497fb6f50d7e9b6a65d2456103c716fdc190be994d143c3d9";
+ libraryHaskellDepends = [ base transformers ];
+ description = "A monad for managed values";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"manatee" = callPackage
@@ -148008,6 +147791,8 @@ self: {
pname = "math-functions";
version = "0.1.5.2";
sha256 = "9ec9b809d33c3b4deebc07d8e776cb3f81866e99906ed84f9c4145fe8eb39f89";
+ revision = "1";
+ editedCabalFile = "3e2b050f7e1d531dd64b088e63886e4b8b5c093d6eee68fb76cbdf7ebb4065fd";
libraryHaskellDepends = [
base deepseq erf vector vector-th-unbox
];
@@ -148023,7 +147808,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "math-functions" = callPackage
+ "math-functions_0_1_6_0" = callPackage
({ mkDerivation, base, deepseq, erf, HUnit, ieee754, QuickCheck
, test-framework, test-framework-hunit, test-framework-quickcheck2
, vector, vector-th-unbox
@@ -148032,6 +147817,8 @@ self: {
pname = "math-functions";
version = "0.1.6.0";
sha256 = "3cb90fc750d28c8f6096ee083aff77dfa4dcf4a4938497957860d222e4436199";
+ revision = "1";
+ editedCabalFile = "2ca1e4ab2bc7a9b4858afb3e68e510841a769f211bf3cb886ccc509f3865f227";
libraryHaskellDepends = [
base deepseq erf vector vector-th-unbox
];
@@ -148043,6 +147830,32 @@ self: {
homepage = "https://github.com/bos/math-functions";
description = "Special functions and Chebyshev polynomials";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "math-functions" = callPackage
+ ({ mkDerivation, base, deepseq, erf, HUnit, primitive, QuickCheck
+ , test-framework, test-framework-hunit, test-framework-quickcheck2
+ , vector, vector-th-unbox
+ }:
+ mkDerivation {
+ pname = "math-functions";
+ version = "0.1.7.0";
+ sha256 = "f3faa070947829fb56a5563f474bfe41237b4b5e8c88c37cac42d208f4a6bea6";
+ revision = "1";
+ editedCabalFile = "c7e7287e2206d4bc8020141fc9a2b2f1ee09dd8c11f4e2eacbd24e68b99852f5";
+ libraryHaskellDepends = [
+ base deepseq erf primitive vector vector-th-unbox
+ ];
+ testHaskellDepends = [
+ base deepseq erf HUnit primitive QuickCheck test-framework
+ test-framework-hunit test-framework-quickcheck2 vector
+ vector-th-unbox
+ ];
+ doCheck = false;
+ homepage = "https://github.com/bos/math-functions";
+ description = "Special functions and Chebyshev polynomials";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"mathblog" = callPackage
@@ -148823,6 +148636,32 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
+ "megaparsec_5_0_0" = callPackage
+ ({ mkDerivation, base, bytestring, containers, exceptions, fail
+ , HUnit, mtl, QuickCheck, scientific, semigroups, test-framework
+ , test-framework-hunit, test-framework-quickcheck2, text
+ , transformers
+ }:
+ mkDerivation {
+ pname = "megaparsec";
+ version = "5.0.0";
+ sha256 = "6ed6448cfd5f37017296b5ce170e037d11855c9d52e7ef01103313514fbead70";
+ libraryHaskellDepends = [
+ base bytestring containers exceptions fail mtl scientific
+ semigroups text transformers
+ ];
+ testHaskellDepends = [
+ base bytestring containers exceptions HUnit mtl QuickCheck
+ scientific semigroups test-framework test-framework-hunit
+ test-framework-quickcheck2 text transformers
+ ];
+ jailbreak = true;
+ homepage = "https://github.com/mrkkrp/megaparsec";
+ description = "Monadic parser combinators";
+ license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"meldable-heap" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -151315,11 +151154,10 @@ self: {
}:
mkDerivation {
pname = "mnist-idx";
- version = "0.1.2.3";
- sha256 = "10c7717cfa6955bc023a9a5be3692fc733ad0864d351a2b24e2a197ac10acecb";
+ version = "0.1.2.4";
+ sha256 = "cb0d8a5ca5fd15a8f8fbf903c1e7adfc22a958d094961ed214eb301c214205bb";
libraryHaskellDepends = [ base binary bytestring vector ];
testHaskellDepends = [ base binary directory hspec vector ];
- jailbreak = true;
homepage = "https://github.com/kryoxide/mnist-idx/";
description = "Read and write IDX data that is used in e.g. the MNIST database.";
license = stdenv.lib.licenses.gpl3;
@@ -152189,7 +152027,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "monad-journal" = callPackage
+ "monad-journal_0_7_1" = callPackage
({ mkDerivation, base, either, monad-control, mtl, transformers
, transformers-base
}:
@@ -152203,6 +152041,23 @@ self: {
homepage = "http://github.com/phaazon/monad-journal";
description = "Pure logger typeclass and monad transformer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "monad-journal" = callPackage
+ ({ mkDerivation, base, either, monad-control, mtl, transformers
+ , transformers-base
+ }:
+ mkDerivation {
+ pname = "monad-journal";
+ version = "0.7.2";
+ sha256 = "72b1a676bd994198544c4861a05b1d1b4f7ae55ea35a837cace539b8d6c69d08";
+ libraryHaskellDepends = [
+ base either monad-control mtl transformers transformers-base
+ ];
+ homepage = "http://github.com/phaazon/monad-journal";
+ description = "Pure logger typeclass and monad transformer";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"monad-levels" = callPackage
@@ -155213,8 +155068,8 @@ self: {
pname = "mueval";
version = "0.9.1.1.2";
sha256 = "e04c3b754695cc8f71c072c6398b8a567c112c69d48355b5bca9bfbb1c050ac1";
- revision = "1";
- editedCabalFile = "5c6cf1e221928e15536f1dfa46942293acf7b470a442c619ef66529b78c59596";
+ revision = "2";
+ editedCabalFile = "fbea4bfb334f9f8ff79942e916e22c1ee9c1a78126f59d7a64e64bc6aa592151";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -155222,6 +155077,7 @@ self: {
mtl process QuickCheck show simple-reflect unix
];
executableHaskellDepends = [ base ];
+ jailbreak = true;
homepage = "https://github.com/gwern/mueval";
description = "Safely evaluate pure Haskell expressions";
license = stdenv.lib.licenses.bsd3;
@@ -155559,19 +155415,6 @@ self: {
}) {};
"multiset-comb" = callPackage
- ({ mkDerivation, base, containers, transformers }:
- mkDerivation {
- pname = "multiset-comb";
- version = "0.2.4";
- sha256 = "297d7a2ec9ecae0deb83e8ff8685b81221a4a4127dcf56e96f4773754cedfb48";
- revision = "1";
- editedCabalFile = "b6ecbed315e0578b665644b8a73ed1e348968e5a93bb1d491fb5a6faf79d7545";
- libraryHaskellDepends = [ base containers transformers ];
- description = "Combinatorial algorithms over multisets";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "multiset-comb_0_2_4_1" = callPackage
({ mkDerivation, base, containers, transformers }:
mkDerivation {
pname = "multiset-comb";
@@ -155580,7 +155423,6 @@ self: {
libraryHaskellDepends = [ base containers transformers ];
description = "Combinatorial algorithms over multisets";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"multisetrewrite" = callPackage
@@ -158679,7 +158521,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "network-conduit-tls" = callPackage
+ "network-conduit-tls_1_2_1_1" = callPackage
({ mkDerivation, base, bytestring, conduit, conduit-extra
, connection, cprng-aes, data-default, HUnit, monad-control, mtl
, network, streaming-commons, tls, transformers
@@ -158699,6 +158541,29 @@ self: {
homepage = "https://github.com/snoyberg/conduit";
description = "Create TLS-aware network code with conduits";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "network-conduit-tls" = callPackage
+ ({ mkDerivation, base, bytestring, conduit, conduit-extra
+ , connection, cprng-aes, data-default, HUnit, monad-control, mtl
+ , network, streaming-commons, tls, transformers, transformers-base
+ }:
+ mkDerivation {
+ pname = "network-conduit-tls";
+ version = "1.2.2";
+ sha256 = "12a2cddfacd19d0585e57ff143d625e255e1a4628a463a41332eabc3c02bb087";
+ libraryHaskellDepends = [
+ base bytestring conduit conduit-extra connection cprng-aes
+ data-default monad-control network streaming-commons tls
+ transformers transformers-base
+ ];
+ testHaskellDepends = [
+ base bytestring conduit conduit-extra connection HUnit mtl
+ ];
+ homepage = "https://github.com/snoyberg/conduit";
+ description = "Create TLS-aware network code with conduits";
+ license = stdenv.lib.licenses.mit;
}) {};
"network-connection" = callPackage
@@ -158792,6 +158657,17 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "network-hans" = callPackage
+ ({ mkDerivation, base, bytestring, hans, parsec }:
+ mkDerivation {
+ pname = "network-hans";
+ version = "0.2";
+ sha256 = "22edd54234b97336910dd35d2e3d083aae15411cf30c8a5407e85faccf1cef05";
+ libraryHaskellDepends = [ base bytestring hans parsec ];
+ description = "HaNS to Network shims for easier HaNS integration";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"network-house" = callPackage
({ mkDerivation, array, base, containers, mtl }:
mkDerivation {
@@ -158931,8 +158807,8 @@ self: {
({ mkDerivation, base, binary, bytestring, network, unix }:
mkDerivation {
pname = "network-msg";
- version = "0.7";
- sha256 = "dc11cb84d44b805bf004d4fcd2e687f5d1858de3b33cf3f60960977dbf50ba9b";
+ version = "0.8";
+ sha256 = "221d381b1eee214af99d9b5551751a93042d7447aabb7d636688791d7e68eaad";
libraryHaskellDepends = [ base binary bytestring network unix ];
description = "Recvmsg and sendmsg bindings";
license = "unknown";
@@ -159795,19 +159671,30 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "ngx-export" = callPackage
+ ({ mkDerivation, base, bytestring, template-haskell }:
+ mkDerivation {
+ pname = "ngx-export";
+ version = "0.1.0.0";
+ sha256 = "71eb528e964f72801c832038a929a693fd654b258be0c654c004f150a17d6c63";
+ libraryHaskellDepends = [ base bytestring template-haskell ];
+ homepage = "http://github.com/lyokha/nginx-haskell-module";
+ description = "Export custom haskell functions into nginx configuration";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"niagra" = callPackage
- ({ mkDerivation, base, containers, ghc-prim, mtl, text
- , transformers
+ ({ mkDerivation, base, ghc-prim, mtl, primitive, text, transformers
}:
mkDerivation {
pname = "niagra";
- version = "0.2.1";
- sha256 = "5b6cb93d70015fc48a200f4937470b73c1e1fd152ce6dd2a4413e3b547d6ee00";
+ version = "0.2.3";
+ sha256 = "19d15b13766496bfceea6b871329984441d42884d662fbf25902b30538745431";
libraryHaskellDepends = [
- base containers ghc-prim mtl text transformers
+ base ghc-prim mtl primitive text transformers
];
homepage = "https://github.com/fhsjaagshs/niagra";
- description = "CSS EDSL for Haskell";
+ description = "High performance CSS EDSL";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -160647,6 +160534,19 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
+ "nullpipe" = callPackage
+ ({ mkDerivation, base, bytestring, hspec, pipes }:
+ mkDerivation {
+ pname = "nullpipe";
+ version = "0.1.0.0";
+ sha256 = "289bbf459ed94ee015ec978bfaaeb4c5b94de066838719fc3f5652280411cf93";
+ libraryHaskellDepends = [ base bytestring pipes ];
+ testHaskellDepends = [ base hspec pipes ];
+ homepage = "https://github.com/mwotton/nullpipe#readme";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"number" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -160895,7 +160795,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "numtype" = callPackage
+ "numtype_1_1" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "numtype";
@@ -160905,14 +160805,40 @@ self: {
homepage = "http://dimensional.googlecode.com/";
description = "Type-level (low cardinality) integers";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "numtype" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "numtype";
+ version = "1.2";
+ sha256 = "d537a8caefc04306384b5b14178b08ece87aeae25f5759be2cde2aff8de3aadd";
+ libraryHaskellDepends = [ base ];
+ homepage = "http://dimensional.googlecode.com/";
+ description = "Type-level (low cardinality) integers";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "numtype-dk_0_5" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "numtype-dk";
+ version = "0.5";
+ sha256 = "adafa783b499dffe02265bfb7b126b53ea3548f0c706670adb842fe06051a13d";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/bjornbm/numtype-dk";
+ description = "Type-level integers, using TypeNats, Data Kinds, and Closed Type Families";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"numtype-dk" = callPackage
({ mkDerivation, base }:
mkDerivation {
pname = "numtype-dk";
- version = "0.5";
- sha256 = "adafa783b499dffe02265bfb7b126b53ea3548f0c706670adb842fe06051a13d";
+ version = "0.5.0.1";
+ sha256 = "29dbb9bf7693989f94605804de31b1a4dacf53ab566ce0346445288eae95d017";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/bjornbm/numtype-dk";
description = "Type-level integers, using TypeNats, Data Kinds, and Closed Type Families";
@@ -161253,8 +161179,8 @@ self: {
}:
mkDerivation {
pname = "octane";
- version = "0.4.19";
- sha256 = "e0e71189d3c0848e2c2c59cae80d82979be5d00c25e38a100392022c9ce43ab1";
+ version = "0.4.22";
+ sha256 = "7ce7c26cd1fb80219b26e0bf428dcd2305374b5e15605536b4367f9a0251bea7";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -161270,6 +161196,31 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "octane_0_4_24" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, autoexporter, base, binary
+ , binary-bits, bytestring, containers, data-binary-ieee754, deepseq
+ , newtype-generics, tasty, tasty-hspec, text
+ }:
+ mkDerivation {
+ pname = "octane";
+ version = "0.4.24";
+ sha256 = "2c74c33a03f90c141da3ffc94c5434e24b6c7cf8c426927480ce0f278eb6802a";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson aeson-pretty autoexporter base binary binary-bits bytestring
+ containers data-binary-ieee754 deepseq newtype-generics text
+ ];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [
+ base binary bytestring containers tasty tasty-hspec
+ ];
+ homepage = "https://github.com/tfausak/octane#readme";
+ description = "Parse Rocket League replays";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"octohat" = callPackage
({ mkDerivation, aeson, base, base-compat, base16-bytestring
, base64-bytestring, bytestring, containers, cryptohash, dotenv
@@ -162010,8 +161961,8 @@ self: {
}:
mkDerivation {
pname = "opaleye-trans";
- version = "0.3.1";
- sha256 = "61c5c21c4bbb9bcc3111ed3310fe454c3cd9e612c2c79cc34f5bbbbae28024f7";
+ version = "0.3.2";
+ sha256 = "aeed0edf623028aedabeda7899a9ac566b69119ec2fa60e806f121021be47d37";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -162021,8 +161972,7 @@ self: {
executableHaskellDepends = [
base opaleye postgresql-simple product-profunctors
];
- jailbreak = true;
- homepage = "https://github.com/tomjaguarpaw/haskell-opaleye";
+ homepage = "https://github.com/WraithM/opaleye-trans";
description = "A monad transformer for Opaleye";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -162753,8 +162703,8 @@ self: {
}:
mkDerivation {
pname = "operational-extra";
- version = "0.3";
- sha256 = "12c01a37e59c5ec5696ce231b894399ee37fc9e6b0400e166b4e92457ced06db";
+ version = "0.4";
+ sha256 = "1a19bddfa919f84ee64482a34ff2e001d8bd8e5fdf9f53693f1921994845ec7d";
libraryHaskellDepends = [
base bytestring operational text time transformers
];
@@ -163172,6 +163122,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "optparse-helper" = callPackage
+ ({ mkDerivation, base, optparse-applicative }:
+ mkDerivation {
+ pname = "optparse-helper";
+ version = "0.2.0.0";
+ sha256 = "3a9674269fb9a26e65fe521e1f88fb73d2fc9eee903c457405dbfe7b74679b1c";
+ libraryHaskellDepends = [ base optparse-applicative ];
+ homepage = "https://github.com/pharpend/optparse-helper";
+ description = "Helper functions for optparse-applicative";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"optparse-simple_0_0_2" = callPackage
({ mkDerivation, base, either, gitrev, optparse-applicative
, template-haskell, transformers
@@ -163493,6 +163455,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "oscpacking" = callPackage
+ ({ mkDerivation, base, colour, gloss, random }:
+ mkDerivation {
+ pname = "oscpacking";
+ version = "0.1.0.0";
+ sha256 = "74c471f1bf18d877061ce60fdcd0030fa77b617ae99c2c10d6d375e2a3fd23f1";
+ libraryHaskellDepends = [ base colour gloss random ];
+ jailbreak = true;
+ description = "Implements an osculatory packing (kissing circles) algorithm and display";
+ license = stdenv.lib.licenses.gpl3;
+ }) {};
+
"osdkeys" = callPackage
({ mkDerivation, base, bytestring, conduit, conduit-extra
, containers, libnotify, process, resourcet, time, transformers
@@ -164983,8 +164957,8 @@ self: {
}:
mkDerivation {
pname = "pandoc-crossref";
- version = "0.2.1.2";
- sha256 = "1410526eb891d20f0d16d6c970c3f7e8355b21c55fde56a1899a5d55828e593a";
+ version = "0.2.1.3";
+ sha256 = "d14b78972c48a722b7e53d12fb601e4379d5384f9a58c8ce46ab42b058125471";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -165064,8 +165038,8 @@ self: {
({ mkDerivation, base, containers, lens, pandoc-types }:
mkDerivation {
pname = "pandoc-lens";
- version = "0.5";
- sha256 = "407c6098424879a1add6393c8f07266291fd28b4ada61366e5625736323a13fb";
+ version = "0.6";
+ sha256 = "70ffd8f5a5086cd6e2f3f92fd3f304ac6cf5ebbef70361086984ce8a11faf3fc";
libraryHaskellDepends = [ base containers lens pandoc-types ];
homepage = "http://github.com/bgamari/pandoc-lens";
description = "Lenses for Pandoc documents";
@@ -165755,7 +165729,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "parsec" = callPackage
+ "parsec_3_1_9" = callPackage
({ mkDerivation, base, bytestring, HUnit, mtl, test-framework
, test-framework-hunit, text
}:
@@ -165772,6 +165746,25 @@ self: {
homepage = "https://github.com/aslatter/parsec";
description = "Monadic parser combinators";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "parsec" = callPackage
+ ({ mkDerivation, base, bytestring, HUnit, mtl, test-framework
+ , test-framework-hunit, text
+ }:
+ mkDerivation {
+ pname = "parsec";
+ version = "3.1.11";
+ sha256 = "6f87251cb1d11505e621274dec15972de924a9074f07f7430a18892064c2676e";
+ libraryHaskellDepends = [ base bytestring mtl text ];
+ testHaskellDepends = [
+ base HUnit test-framework test-framework-hunit
+ ];
+ doCheck = false;
+ homepage = "https://github.com/aslatter/parsec";
+ description = "Monadic parser combinators";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"parsec-extra" = callPackage
@@ -169341,7 +169334,7 @@ self: {
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {};
- "persistent-sqlite_2_5" = callPackage
+ "persistent-sqlite_2_5_0_1" = callPackage
({ mkDerivation, aeson, base, bytestring, conduit, containers
, hspec, monad-control, monad-logger, old-locale, persistent
, persistent-template, resource-pool, resourcet, text, time
@@ -169349,8 +169342,8 @@ self: {
}:
mkDerivation {
pname = "persistent-sqlite";
- version = "2.5";
- sha256 = "ca67e87e5089215cfe1782c32b5e227355054caa92c802beef056f2304bb6373";
+ version = "2.5.0.1";
+ sha256 = "0aeb44b66436ed0e55d473915f1cbaa2a673b21861c03edf0e83418c6f2c17e7";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -169685,7 +169678,7 @@ self: {
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {};
- "persistent-template" = callPackage
+ "persistent-template_2_1_8" = callPackage
({ mkDerivation, aeson, aeson-compat, base, bytestring, containers
, ghc-prim, hspec, http-api-data, monad-control, monad-logger
, path-pieces, persistent, QuickCheck, tagged, template-haskell
@@ -169706,10 +169699,11 @@ self: {
homepage = "http://www.yesodweb.com/book/persistent";
description = "Type-safe, non-relational, multi-backend persistence";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {};
- "persistent-template_2_5_1_1" = callPackage
+ "persistent-template" = callPackage
({ mkDerivation, aeson, aeson-compat, base, bytestring, containers
, ghc-prim, hspec, http-api-data, monad-control, monad-logger
, path-pieces, persistent, QuickCheck, tagged, template-haskell
@@ -169717,8 +169711,32 @@ self: {
}:
mkDerivation {
pname = "persistent-template";
- version = "2.5.1.1";
- sha256 = "37b70abf241324a296fbfa949ba0572515701dbb593648cdd6deffce6db3aae3";
+ version = "2.1.8.1";
+ sha256 = "34911f40028357567717f6724abae4e6fc905567ffc8ba8ee5042e9680b2f168";
+ libraryHaskellDepends = [
+ aeson aeson-compat base bytestring containers ghc-prim
+ http-api-data monad-control monad-logger path-pieces persistent
+ tagged template-haskell text transformers unordered-containers
+ ];
+ testHaskellDepends = [
+ aeson base bytestring hspec persistent QuickCheck text transformers
+ ];
+ homepage = "http://www.yesodweb.com/book/persistent";
+ description = "Type-safe, non-relational, multi-backend persistence";
+ license = stdenv.lib.licenses.mit;
+ maintainers = with stdenv.lib.maintainers; [ psibi ];
+ }) {};
+
+ "persistent-template_2_5_1_3" = callPackage
+ ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers
+ , ghc-prim, hspec, http-api-data, monad-control, monad-logger
+ , path-pieces, persistent, QuickCheck, tagged, template-haskell
+ , text, transformers, unordered-containers
+ }:
+ mkDerivation {
+ pname = "persistent-template";
+ version = "2.5.1.3";
+ sha256 = "c0070245e0b569ceef15e55be816a069cf2d26774c9613368d915e6ecb396f2a";
libraryHaskellDepends = [
aeson aeson-compat base bytestring containers ghc-prim
http-api-data monad-control monad-logger path-pieces persistent
@@ -169982,22 +170000,22 @@ self: {
"pgdl" = callPackage
({ mkDerivation, base, binary, brick, bytestring, Cabal, conduit
, conduit-extra, configurator, data-default, directory
- , directory-listing-webpage-parser, filepath, http-conduit, process
- , resourcet, tagsoup, text, time, transformers, unix, vector, vty
+ , directory-listing-webpage-parser, filepath, http-conduit
+ , http-types, process, resourcet, tagsoup, text, time, transformers
+ , unix, vector, vty
}:
mkDerivation {
pname = "pgdl";
- version = "9.0";
- sha256 = "d4812a30b8d37572c9fc0da282dbc1258bd31769a2e3d0771da8f391eb72d3a5";
+ version = "9.2";
+ sha256 = "db25085b9b2ed08020635dd1e48b031b1811d2d5e7df2d991cbe8f8710415faf";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base binary brick bytestring Cabal conduit conduit-extra
configurator data-default directory
- directory-listing-webpage-parser filepath http-conduit process
- resourcet tagsoup text time transformers unix vector vty
+ directory-listing-webpage-parser filepath http-conduit http-types
+ process resourcet tagsoup text time transformers unix vector vty
];
- jailbreak = true;
description = "browse directory listing webpages and download files from them";
license = stdenv.lib.licenses.publicDomain;
}) {};
@@ -170174,8 +170192,8 @@ self: {
}:
mkDerivation {
pname = "phoityne-vscode";
- version = "0.0.2.0";
- sha256 = "fa1c8d6f4e6f034f439db307e44990b0cb8840cdd2084e8a4bd28008b6139cdb";
+ version = "0.0.3.0";
+ sha256 = "cf33fb53d46cdb21c76397e1a2b69ee96f5c582b63276fc2f337abf43698a0ca";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -170185,7 +170203,7 @@ self: {
text transformers
];
testHaskellDepends = [ aeson base hspec ];
- homepage = "https://sites.google.com/site/phoityne/";
+ homepage = "https://sites.google.com/site/phoityne/vscode";
description = "ghci debug viewer on Visual Studio Code";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -173172,7 +173190,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "polyparse" = callPackage
+ "polyparse_1_11" = callPackage
({ mkDerivation, base, bytestring, text }:
mkDerivation {
pname = "polyparse";
@@ -173182,9 +173200,10 @@ self: {
homepage = "http://code.haskell.org/~malcolm/polyparse/";
description = "A variety of alternative parser combinator libraries";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "polyparse_1_12" = callPackage
+ "polyparse" = callPackage
({ mkDerivation, base, bytestring, text }:
mkDerivation {
pname = "polyparse";
@@ -173194,7 +173213,6 @@ self: {
homepage = "http://code.haskell.org/~malcolm/polyparse/";
description = "A variety of alternative parser combinator libraries";
license = "LGPL";
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"polyseq" = callPackage
@@ -173227,6 +173245,7 @@ self: {
libraryHaskellDepends = [
base containers deepseq polyparse tagsoup
];
+ jailbreak = true;
homepage = "https://github.com/kawu/polysoup";
description = "Online XML parsing with polyparse and tagsoup";
license = stdenv.lib.licenses.bsd3;
@@ -173629,6 +173648,8 @@ self: {
pname = "posix-paths";
version = "0.2.1.0";
sha256 = "2086e66f6aef0629d586c63d461a0c45232dc6c3afc939898106bcc632c0faa0";
+ revision = "2";
+ editedCabalFile = "8ad8aaa78d501b83f4583cb66365cc518f531a54fa4f97e458c0b86008a1acfe";
libraryHaskellDepends = [ base bytestring unix ];
testHaskellDepends = [
base bytestring doctest HUnit QuickCheck unix
@@ -174431,19 +174452,6 @@ self: {
}) {};
"postgresql-transactional" = callPackage
- ({ mkDerivation, base, monad-control, mtl, postgresql-simple }:
- mkDerivation {
- pname = "postgresql-transactional";
- version = "1.0.0";
- sha256 = "5d4468f6142628432a6f6ace9485ac441a54f6ce42a99d8efaad6f532a9bfd48";
- libraryHaskellDepends = [
- base monad-control mtl postgresql-simple
- ];
- description = "a transactional monad on top of postgresql-simple";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "postgresql-transactional_1_1_1" = callPackage
({ mkDerivation, base, monad-control, mtl, postgresql-simple }:
mkDerivation {
pname = "postgresql-transactional";
@@ -174454,7 +174462,6 @@ self: {
];
description = "a transactional monad on top of postgresql-simple";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"postgresql-typed" = callPackage
@@ -175467,8 +175474,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "prettyFunctionComposing";
- version = "1.0.1";
- sha256 = "0b254954b19b3217eb4f1d6dc84cf5b8ffaa3dfe67ce2cb00a506546a56f6930";
+ version = "2.0.0";
+ sha256 = "0d222ed7f53f836ae025a5f19e242f1224e065043c19f25ec51e27d516e47823";
libraryHaskellDepends = [ base ];
description = "prettier function composition by (°)";
license = stdenv.lib.licenses.bsd3;
@@ -175638,6 +175645,23 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "pringletons" = callPackage
+ ({ mkDerivation, aeson, base, hashable, singletons
+ , template-haskell, text, unordered-containers, vector, vinyl
+ }:
+ mkDerivation {
+ pname = "pringletons";
+ version = "0.3";
+ sha256 = "2d9587e66b232f66ec7821df4c5999d48883a7f06daf4a39ad1f770b92baecd7";
+ libraryHaskellDepends = [
+ aeson base hashable singletons template-haskell text
+ unordered-containers vector vinyl
+ ];
+ homepage = "https://github.com/andrewthad/pringletons";
+ description = "Classes and data structures complementing the singletons library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"print-debugger" = callPackage
({ mkDerivation, base, split }:
mkDerivation {
@@ -175936,6 +175960,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "process-extras_0_4_1_4" = callPackage
+ ({ mkDerivation, base, bytestring, deepseq, generic-deriving
+ , ListLike, process, text
+ }:
+ mkDerivation {
+ pname = "process-extras";
+ version = "0.4.1.4";
+ sha256 = "05cd949158ff605cb63fc86a2de1b51bfd8d27bf54b5fbe6427a1941e938cfc0";
+ libraryHaskellDepends = [
+ base bytestring deepseq generic-deriving ListLike process text
+ ];
+ homepage = "https://github.com/seereason/process-extras";
+ description = "Process extras";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"process-iterio" = callPackage
({ mkDerivation, base, bytestring, cpphs, iterIO, process
, transformers
@@ -176026,39 +176067,6 @@ self: {
}) {};
"process-streaming" = callPackage
- ({ mkDerivation, attoparsec, base, bifunctors, bytestring, conceit
- , containers, directory, doctest, exceptions, filepath, foldl, free
- , kan-extensions, lens-family-core, pipes, pipes-attoparsec
- , pipes-bytestring, pipes-concurrency, pipes-group, pipes-parse
- , pipes-safe, pipes-text, pipes-transduce, process, profunctors
- , semigroups, tasty, tasty-hunit, text, transformers
- , transformers-compat, void
- }:
- mkDerivation {
- pname = "process-streaming";
- version = "0.9.1.1";
- sha256 = "0d773c9c61232de9878a4d56f98e810932980309bde2e321e3a3007a8797d7c6";
- libraryHaskellDepends = [
- base bifunctors bytestring conceit free kan-extensions pipes
- pipes-bytestring pipes-concurrency pipes-parse pipes-safe
- pipes-text pipes-transduce process profunctors text transformers
- transformers-compat void
- ];
- testHaskellDepends = [
- attoparsec base bifunctors bytestring containers directory doctest
- exceptions filepath foldl free lens-family-core pipes
- pipes-attoparsec pipes-bytestring pipes-concurrency pipes-group
- pipes-parse pipes-safe pipes-text pipes-transduce process
- semigroups tasty tasty-hunit text transformers transformers-compat
- void
- ];
- doCheck = false;
- description = "Streaming interface to system processes";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "process-streaming_0_9_1_2" = callPackage
({ mkDerivation, attoparsec, base, bifunctors, bytestring, conceit
, containers, directory, doctest, exceptions, filepath, foldl, free
, kan-extensions, lens-family-core, pipes, pipes-attoparsec
@@ -177982,7 +177990,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "pureMD5" = callPackage
+ "pureMD5_2_1_2_1" = callPackage
({ mkDerivation, base, binary, bytestring, cereal, crypto-api
, tagged
}:
@@ -177995,9 +178003,10 @@ self: {
];
description = "A Haskell-only implementation of the MD5 digest (hash) algorithm";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "pureMD5_2_1_3" = callPackage
+ "pureMD5" = callPackage
({ mkDerivation, base, binary, bytestring, cereal, crypto-api
, crypto-api-tests, pretty-hex, QuickCheck, tagged, test-framework
, test-framework-quickcheck2
@@ -178015,7 +178024,6 @@ self: {
];
description = "A Haskell-only implementation of the MD5 digest (hash) algorithm";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"purescript_0_7_2_0" = callPackage
@@ -178303,17 +178311,19 @@ self: {
"purescript-bridge" = callPackage
({ mkDerivation, base, containers, directory, filepath
- , generic-deriving, text
+ , generic-deriving, lens, mtl, text, transformers
}:
mkDerivation {
pname = "purescript-bridge";
- version = "0.3.2.0";
- sha256 = "0377f67fc941523c093767ca33c215236550f6f67f51b95c6527e93f8f618954";
+ version = "0.4.0.0";
+ sha256 = "f58f12eaeab88ab31d7e16de761cfdf21e3ea12acc99c899528242d404538600";
libraryHaskellDepends = [
- base containers directory filepath generic-deriving text
+ base containers directory filepath generic-deriving lens mtl text
+ transformers
];
+ testHaskellDepends = [ base containers text ];
description = "Generate PureScript data types from Haskell data types";
- license = stdenv.lib.licenses.agpl3;
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
@@ -180356,8 +180366,8 @@ self: {
}:
mkDerivation {
pname = "random-variates";
- version = "0.1.4.0";
- sha256 = "266a3e0a39914bf15da877e1cf866c263d73be820017d6543445510b16fda554";
+ version = "0.1.5.1";
+ sha256 = "f407c82ceb9dc24f795bc06f8f186e83986f23ae8d8db40fbf8976a33fa4aacc";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -182022,6 +182032,8 @@ self: {
pname = "reducers";
version = "3.12.1";
sha256 = "e43bb7678272691a358c049daecbac715c4b0fcece021c6b2ac7b2a1c16b6d5e";
+ revision = "1";
+ editedCabalFile = "c6ab48d549368fdf26d133be187a1ca00831307271b1a710ec950d50b2d1c2be";
libraryHaskellDepends = [
array base bytestring containers fingertree hashable semigroupoids
semigroups text transformers unordered-containers
@@ -182095,7 +182107,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "ref-fd" = callPackage
+ "ref-fd_0_4" = callPackage
({ mkDerivation, base, stm, transformers }:
mkDerivation {
pname = "ref-fd";
@@ -182106,6 +182118,18 @@ self: {
homepage = "http://www.cs.drexel.edu/~mainland/";
description = "A type class for monads with references using functional dependencies";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "ref-fd" = callPackage
+ ({ mkDerivation, base, stm, transformers }:
+ mkDerivation {
+ pname = "ref-fd";
+ version = "0.4.0.1";
+ sha256 = "e416f1afba149e3af9cbe1011381d0b89609c240d812127bd03b8a922a5f6037";
+ libraryHaskellDepends = [ base stm transformers ];
+ description = "A type class for monads with references using functional dependencies";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"ref-mtl" = callPackage
@@ -182192,23 +182216,25 @@ self: {
"references" = callPackage
({ mkDerivation, array, base, containers, directory, either
- , filepath, instance-control, mtl, template-haskell, text
- , transformers
+ , filepath, HUnit, instance-control, lens, mtl, template-haskell
+ , text, transformers, uniplate
}:
mkDerivation {
pname = "references";
- version = "0.3.0.0";
- sha256 = "53d69562abb903586376434b4b8dcc8e3199144bf6e0fe05bfc3a5f175ca8367";
+ version = "0.3.0.1";
+ sha256 = "ca6eb6aaa433fd9acf8cb2d4c9208a15285b8bd3dd1fdcd30201f370a5fb534f";
libraryHaskellDepends = [
array base containers directory either filepath instance-control
- mtl template-haskell text transformers
+ mtl template-haskell text transformers uniplate
+ ];
+ testHaskellDepends = [
+ array base containers directory either filepath HUnit
+ instance-control lens mtl template-haskell text transformers
];
- jailbreak = true;
homepage = "https://github.com/lazac/references";
- description = "Generalization of lenses, folds and traversals to handle monads and addition";
+ description = "Selectors for reading and updating data";
license = stdenv.lib.licenses.bsd3;
- broken = true;
- }) {instance-control = null;};
+ }) {};
"refh" = callPackage
({ mkDerivation, base, clippard, cmdargs, directory, filepath
@@ -182466,6 +182492,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "reflex-dom-helpers" = callPackage
+ ({ mkDerivation, base, reflex, reflex-dom, template-haskell }:
+ mkDerivation {
+ pname = "reflex-dom-helpers";
+ version = "0.1.0.0";
+ sha256 = "11ca03871d79471c6aca59f7a947a0d809ed9ec5765b0c2250c510d478e2fb3b";
+ libraryHaskellDepends = [
+ base reflex reflex-dom template-haskell
+ ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/layer-3-communications/reflex-dom-helpers";
+ description = "Element tag helpers for working with reflex-dom";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"reflex-gloss" = callPackage
({ mkDerivation, base, dependent-sum, gloss, mtl, reflex
, transformers
@@ -182935,7 +182976,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "regex-tdfa" = callPackage
+ "regex-tdfa_1_2_1" = callPackage
({ mkDerivation, array, base, bytestring, containers, ghc-prim, mtl
, parsec, regex-base
}:
@@ -182949,9 +182990,10 @@ self: {
homepage = "http://hackage.haskell.org/package/regex-tdfa";
description = "Replaces/Enhances Text.Regex";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "regex-tdfa_1_2_2" = callPackage
+ "regex-tdfa" = callPackage
({ mkDerivation, array, base, bytestring, containers, ghc-prim, mtl
, parsec, regex-base
}:
@@ -182965,7 +183007,6 @@ self: {
homepage = "https://github.com/ChrisKuklewicz/regex-tdfa";
description = "Replaces/Enhances Text.Regex";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"regex-tdfa-pipes" = callPackage
@@ -183534,6 +183575,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "relational-query_0_8_2_1" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers, dlist
+ , names-th, persistable-record, quickcheck-simple, sql-words
+ , template-haskell, text, time, time-locale-compat, transformers
+ }:
+ mkDerivation {
+ pname = "relational-query";
+ version = "0.8.2.1";
+ sha256 = "f5a23508f572529d4d935293c26f38b6db8768cbaea434150a2184e342368d5e";
+ libraryHaskellDepends = [
+ array base bytestring containers dlist names-th persistable-record
+ sql-words template-haskell text time time-locale-compat
+ transformers
+ ];
+ testHaskellDepends = [
+ base containers quickcheck-simple transformers
+ ];
+ homepage = "http://khibino.github.io/haskell-relational-record/";
+ description = "Typeful, Modular, Relational, algebraic query engine";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"relational-query-HDBC" = callPackage
({ mkDerivation, base, containers, convertible, dlist, HDBC
, HDBC-session, names-th, persistable-record, relational-query
@@ -183571,20 +183635,25 @@ self: {
}) {};
"relational-record-examples" = callPackage
- ({ mkDerivation, base, HDBC, HDBC-session, HDBC-sqlite3, names-th
+ ({ mkDerivation, base, HDBC, HDBC-session, HDBC-sqlite3
, persistable-record, relational-query, relational-query-HDBC
- , template-haskell, time
+ , relational-schemas, template-haskell, time
}:
mkDerivation {
pname = "relational-record-examples";
- version = "0.2.0.3";
- sha256 = "3c84a71adf6493df47e6a54cd67ed83fd9c095dea8712ed63c0905ad0729f9c1";
- isLibrary = false;
+ version = "0.3.0.1";
+ sha256 = "72687264a0e511fd06d6b3e81cd095d3014a18c067d2c2f7d94866c07eca95a1";
+ isLibrary = true;
isExecutable = true;
- executableHaskellDepends = [
- base HDBC HDBC-session HDBC-sqlite3 names-th persistable-record
- relational-query relational-query-HDBC template-haskell time
+ libraryHaskellDepends = [
+ base HDBC HDBC-session HDBC-sqlite3 persistable-record
+ relational-query relational-query-HDBC relational-schemas
+ template-haskell
];
+ executableHaskellDepends = [
+ base relational-query template-haskell time
+ ];
+ jailbreak = true;
description = "Examples of Haskell Relationa Record";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -183606,6 +183675,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "relational-schemas_0_1_3_0" = callPackage
+ ({ mkDerivation, base, bytestring, containers, persistable-record
+ , relational-query, template-haskell, time
+ }:
+ mkDerivation {
+ pname = "relational-schemas";
+ version = "0.1.3.0";
+ sha256 = "73a8f38827f2e346dada062f185fa351890880c74888f240bc1020037c0b68ad";
+ libraryHaskellDepends = [
+ base bytestring containers persistable-record relational-query
+ template-haskell time
+ ];
+ homepage = "http://khibino.github.io/haskell-relational-record/";
+ description = "RDBMSs' schema templates for relational-query";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"relative-date" = callPackage
({ mkDerivation, base, concatenative, datetime, mtl, parsec, time
}:
@@ -187008,12 +187095,16 @@ self: {
}) {};
"ring-buffer" = callPackage
- ({ mkDerivation, base, mtl, primitive, vector }:
+ ({ mkDerivation, base, mtl, primitive, QuickCheck, vector }:
mkDerivation {
pname = "ring-buffer";
- version = "0.1.3";
- sha256 = "3d0c0333711efb14d739e966b37bd6e3f6189125675251f87aa647398d7b2dc7";
+ version = "0.2.0";
+ sha256 = "4b4d074fbc35267d32fe1124f8346bd5c7e39f9286514b428cb0fc0198d39428";
+ revision = "1";
+ editedCabalFile = "0fa00f983efef18739d3671c34e272f4a37d379de9b20d466447ab0149e8a958";
libraryHaskellDepends = [ base mtl primitive vector ];
+ testHaskellDepends = [ base QuickCheck vector ];
+ jailbreak = true;
homepage = "http://github.com/bgamari/ring-buffer";
description = "A concurrent, mutable ring-buffer";
license = stdenv.lib.licenses.bsd3;
@@ -192283,6 +192374,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "serpentine" = callPackage
+ ({ mkDerivation, base, pringletons, singletons, template-haskell
+ , text, vinyl
+ }:
+ mkDerivation {
+ pname = "serpentine";
+ version = "0.2";
+ sha256 = "7b0ba5ca3e3612c824dcdf108a63b641484d9b37f9c80b21a3463245e54dedf2";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base pringletons singletons template-haskell text vinyl
+ ];
+ executableHaskellDepends = [ base singletons text ];
+ homepage = "http://github.com/githubuser/serpentine#readme";
+ description = "Simple project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"serv" = callPackage
({ mkDerivation, base, containers, http-kinder, singletons, text }:
mkDerivation {
@@ -192521,56 +192631,28 @@ self: {
({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring
, bytestring-conversion, case-insensitive, directory, doctest
, filemanip, filepath, hspec, http-api-data, http-media, http-types
- , network-uri, QuickCheck, quickcheck-instances, string-conversions
- , text, url, vault
+ , mmorph, mtl, network-uri, QuickCheck, quickcheck-instances
+ , string-conversions, text, url, vault
}:
mkDerivation {
pname = "servant";
- version = "0.6.1";
- sha256 = "830154335052270314be49644db3a88665b1910d1678ff35337a9b3caabaab3a";
+ version = "0.7.1";
+ sha256 = "e4e847df340f76172f719d7570cbf2cc59e4045aa994bb764f0ca5fd11c6126c";
libraryHaskellDepends = [
aeson attoparsec base base-compat bytestring bytestring-conversion
- case-insensitive http-api-data http-media http-types network-uri
- string-conversions text vault
+ case-insensitive http-api-data http-media http-types mmorph mtl
+ network-uri string-conversions text vault
];
testHaskellDepends = [
aeson attoparsec base bytestring directory doctest filemanip
filepath hspec QuickCheck quickcheck-instances string-conversions
text url
];
- doCheck = false;
- homepage = "http://haskell-servant.github.io/";
+ homepage = "http://haskell-servant.readthedocs.org/";
description = "A family of combinators for defining webservices APIs";
license = stdenv.lib.licenses.bsd3;
}) {};
- "servant_0_7" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring
- , bytestring-conversion, case-insensitive, directory, doctest
- , filemanip, filepath, hspec, http-api-data, http-media, http-types
- , network-uri, QuickCheck, quickcheck-instances, string-conversions
- , text, url, vault
- }:
- mkDerivation {
- pname = "servant";
- version = "0.7";
- sha256 = "c4a61f0bb998c7e3a7dd808c64e73419e7c1b3a60e51d3cbce8cb32eb1ea3f97";
- libraryHaskellDepends = [
- aeson attoparsec base base-compat bytestring bytestring-conversion
- case-insensitive http-api-data http-media http-types network-uri
- string-conversions text vault
- ];
- testHaskellDepends = [
- aeson attoparsec base bytestring directory doctest filemanip
- filepath hspec QuickCheck quickcheck-instances string-conversions
- text url
- ];
- homepage = "http://haskell-servant.github.io/";
- description = "A family of combinators for defining webservices APIs";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"servant-JuicyPixels_0_1_0_0" = callPackage
({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant
, servant-server, wai, warp
@@ -192695,37 +192777,22 @@ self: {
({ mkDerivation, base, blaze-html, http-media, servant }:
mkDerivation {
pname = "servant-blaze";
- version = "0.6.1";
- sha256 = "f34b45f7c15f53858034052bc0e662ce884ca2c231bc7f3fecc69bc8763f209f";
+ version = "0.7.1";
+ sha256 = "90ed1c7a22b83bee344ef3896203f3699b7633bf986ffa064752c3596c072646";
libraryHaskellDepends = [ base blaze-html http-media servant ];
- homepage = "http://haskell-servant.github.io/";
+ homepage = "http://haskell-servant.readthedocs.org/";
description = "Blaze-html support for servant";
license = stdenv.lib.licenses.bsd3;
}) {};
- "servant-blaze_0_7" = callPackage
- ({ mkDerivation, base, blaze-html, http-media, servant }:
- mkDerivation {
- pname = "servant-blaze";
- version = "0.7";
- sha256 = "e0639a646d1ce876da88ddbcc32e99348c6e3c9b76d21fb43261b89b19dc8ebd";
- libraryHaskellDepends = [ base blaze-html http-media servant ];
- jailbreak = true;
- homepage = "http://haskell-servant.github.io/";
- description = "Blaze-html support for servant";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"servant-cassava" = callPackage
({ mkDerivation, base, cassava, http-media, servant, vector }:
mkDerivation {
pname = "servant-cassava";
- version = "0.7";
- sha256 = "ae4d8a51a2a6a1bafa224fd83ce7ccb7669e01e0bb19328bb09841e4e6a3a8ad";
+ version = "0.7.1";
+ sha256 = "385bf6187f86c0fb9ba39578eb132118d2ada5dd17f1d0abd6235e4e9113623d";
libraryHaskellDepends = [ base cassava http-media servant vector ];
- jailbreak = true;
- homepage = "http://haskell-servant.github.io/";
+ homepage = "http://haskell-servant.readthedocs.org/";
description = "Servant CSV content-type for cassava";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -192934,8 +193001,8 @@ self: {
}:
mkDerivation {
pname = "servant-client";
- version = "0.6.1";
- sha256 = "3b2724cd01fd60c10132b4c20384e5bc734f2e46b03db9b6a0f6d4b947decee4";
+ version = "0.7.1";
+ sha256 = "1aecf3d0d573900bc0b20e3ecadd0561d8cbaaf461efb40b213341d36396661d";
libraryHaskellDepends = [
aeson attoparsec base base64-bytestring bytestring exceptions
http-api-data http-client http-client-tls http-media http-types
@@ -192947,41 +193014,11 @@ self: {
http-types HUnit network QuickCheck servant servant-server text
transformers transformers-compat wai warp
];
- homepage = "http://haskell-servant.github.io/";
+ homepage = "http://haskell-servant.readthedocs.org/";
description = "automatical derivation of querying functions for servant webservices";
license = stdenv.lib.licenses.bsd3;
}) {};
- "servant-client_0_7" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, base64-bytestring
- , bytestring, deepseq, exceptions, hspec, http-api-data
- , http-client, http-client-tls, http-media, http-types, HUnit
- , network, network-uri, QuickCheck, safe, servant, servant-server
- , string-conversions, text, transformers, transformers-compat, wai
- , warp
- }:
- mkDerivation {
- pname = "servant-client";
- version = "0.7";
- sha256 = "8874dc13f0256d31734e011d8fcd4ffbb38c3d25ca0514e5e9433a16d42b96cf";
- libraryHaskellDepends = [
- aeson attoparsec base base64-bytestring bytestring exceptions
- http-api-data http-client http-client-tls http-media http-types
- network-uri safe servant string-conversions text transformers
- transformers-compat
- ];
- testHaskellDepends = [
- aeson base bytestring deepseq hspec http-client http-media
- http-types HUnit network QuickCheck servant servant-server text
- transformers transformers-compat wai warp
- ];
- jailbreak = true;
- homepage = "http://haskell-servant.github.io/";
- description = "automatical derivation of querying functions for servant webservices";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"servant-csharp" = callPackage
({ mkDerivation, aeson, base, bytestring, directory, filepath
, heredocs, http-types, lens, mtl, servant, servant-foreign
@@ -192997,7 +193034,6 @@ self: {
mtl servant servant-foreign servant-swagger swagger2 text time
unordered-containers uuid uuid-types
];
- jailbreak = true;
homepage = "https://github.com/cutsea110/servant-csharp.git";
description = "Generate servant client library for C#";
license = stdenv.lib.licenses.bsd3;
@@ -193215,8 +193251,8 @@ self: {
}:
mkDerivation {
pname = "servant-docs";
- version = "0.6.1";
- sha256 = "66604bcbeee4f84847d64fb7ed127eb4f32570d16a33aa24adf2684688aae33b";
+ version = "0.7.1";
+ sha256 = "cd1a9fbcba479a9086fb562ad5c5d5921d2e4d1d079f7922ef0f3d2c75701964";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -193231,42 +193267,11 @@ self: {
testHaskellDepends = [
aeson base hspec lens servant string-conversions
];
- homepage = "http://haskell-servant.github.io/";
+ homepage = "http://haskell-servant.readthedocs.org/";
description = "generate API docs for your servant webservice";
license = stdenv.lib.licenses.bsd3;
}) {};
- "servant-docs_0_7" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, base, bytestring
- , bytestring-conversion, case-insensitive, control-monad-omega
- , hashable, hspec, http-media, http-types, lens, servant
- , string-conversions, text, unordered-containers
- }:
- mkDerivation {
- pname = "servant-docs";
- version = "0.7";
- sha256 = "8bb427ae3f9633b166efa45274cfffd17e7c313a5cbe40f6e6384e746eb59fb2";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson aeson-pretty base bytestring bytestring-conversion
- case-insensitive control-monad-omega hashable http-media http-types
- lens servant string-conversions text unordered-containers
- ];
- executableHaskellDepends = [
- aeson base bytestring-conversion lens servant string-conversions
- text
- ];
- testHaskellDepends = [
- aeson base hspec lens servant string-conversions
- ];
- jailbreak = true;
- homepage = "http://haskell-servant.github.io/";
- description = "generate API docs for your servant webservice";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"servant-ede" = callPackage
({ mkDerivation, aeson, base, bytestring, ede, either, filepath
, http-media, http-types, semigroups, servant, servant-server, text
@@ -193310,8 +193315,7 @@ self: {
homepage = "http://github.com/mattjbray/servant-elm#readme";
description = "Automatically derive Elm functions to query servant webservices";
license = stdenv.lib.licenses.bsd3;
- broken = true;
- }) {elm-export = null;};
+ }) {};
"servant-examples" = callPackage
({ mkDerivation, aeson, base, bytestring, directory, either
@@ -193342,8 +193346,8 @@ self: {
({ mkDerivation, base, hspec, http-types, lens, servant, text }:
mkDerivation {
pname = "servant-foreign";
- version = "0.6.1";
- sha256 = "de131f3538d9e01a5c9a8c57ee85a22753fa25e80f98031e0c2947c5aca9b324";
+ version = "0.7.1";
+ sha256 = "93ee994eeb20b28a00fea5092ec34223c4826c4db6da71f4150d8a91950fb578";
libraryHaskellDepends = [ base http-types lens servant text ];
testHaskellDepends = [ base hspec ];
description = "Helpers for generating clients for servant APIs in any programming language";
@@ -193351,20 +193355,6 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "servant-foreign_0_7" = callPackage
- ({ mkDerivation, base, hspec, http-types, lens, servant, text }:
- mkDerivation {
- pname = "servant-foreign";
- version = "0.7";
- sha256 = "2c0fe064a4cd38fe73bb6133fd7d402e5b6457dd2902c76322887d6c5f0e383b";
- libraryHaskellDepends = [ base http-types lens servant text ];
- testHaskellDepends = [ base hspec ];
- jailbreak = true;
- description = "Helpers for generating clients for servant APIs in any programming language";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"servant-github" = callPackage
({ mkDerivation, aeson, base, either, hspec, http-link-header
, QuickCheck, servant, servant-client, text, transformers
@@ -193592,8 +193582,8 @@ self: {
}:
mkDerivation {
pname = "servant-js";
- version = "0.6.1";
- sha256 = "8bafcd5632bb49346280a1922e1708e55da639c485347d0566724445e2854611";
+ version = "0.7.1";
+ sha256 = "15f4f26ffe2e9613defe30c028c43bc685f1582a6a0d97186dea5867c5cd5e89";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -193607,36 +193597,7 @@ self: {
base base-compat hspec hspec-expectations language-ecmascript lens
servant text
];
- homepage = "http://haskell-servant.github.io/";
- description = "Automatically derive javascript functions to query servant webservices";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "servant-js_0_7" = callPackage
- ({ mkDerivation, aeson, base, base-compat, charset, filepath, hspec
- , hspec-expectations, language-ecmascript, lens, servant
- , servant-foreign, servant-server, stm, text, transformers, warp
- }:
- mkDerivation {
- pname = "servant-js";
- version = "0.7";
- sha256 = "355fac0a7232a163b628194750aa47897e0bc53a57799d6b132509cf4a82be66";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base base-compat charset lens servant-foreign text
- ];
- executableHaskellDepends = [
- aeson base filepath lens servant servant-server stm transformers
- warp
- ];
- testHaskellDepends = [
- base base-compat hspec hspec-expectations language-ecmascript lens
- servant text
- ];
- jailbreak = true;
- homepage = "http://haskell-servant.github.io/";
+ homepage = "http://haskell-servant.readthedocs.org/";
description = "Automatically derive javascript functions to query servant webservices";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -193646,11 +193607,10 @@ self: {
({ mkDerivation, base, http-media, lucid, servant }:
mkDerivation {
pname = "servant-lucid";
- version = "0.7";
- sha256 = "6a1dc36d919763d0793e21dca873038ececfaa386e792ac8d70c597ef94e74a4";
+ version = "0.7.1";
+ sha256 = "ec26ba7d159b09be10beacf6242f6ae1bd111e9c738bfbf3cf2f560f48e0fe40";
libraryHaskellDepends = [ base http-media lucid servant ];
- jailbreak = true;
- homepage = "http://haskell-servant.github.io/";
+ homepage = "http://haskell-servant.readthedocs.org/";
description = "Servant support for lucid";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -193662,8 +193622,8 @@ self: {
}:
mkDerivation {
pname = "servant-mock";
- version = "0.6.1";
- sha256 = "c612d546f82f0b633cab8396c71583f0866034abd9c3f2462fce3faec9006621";
+ version = "0.7.1";
+ sha256 = "e9bec220198a9c9ae67782d88870ea4002562ad20eb6302b5f5a4d6f9752a169";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -193682,34 +193642,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "servant-mock_0_7" = callPackage
- ({ mkDerivation, aeson, base, bytestring, bytestring-conversion
- , hspec, hspec-wai, http-types, QuickCheck, servant, servant-server
- , transformers, wai, warp
- }:
- mkDerivation {
- pname = "servant-mock";
- version = "0.7";
- sha256 = "42065734878eabbb2cd424737bab0e1dd3ff99eddace93c9c0953f59a42dc55d";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- base bytestring http-types QuickCheck servant servant-server
- transformers wai
- ];
- executableHaskellDepends = [
- aeson base QuickCheck servant-server warp
- ];
- testHaskellDepends = [
- aeson base bytestring-conversion hspec hspec-wai QuickCheck servant
- servant-server wai
- ];
- homepage = "http://github.com/haskell-servant/servant";
- description = "Derive a mock server for free from your servant API types";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"servant-pandoc_0_4_1_1" = callPackage
({ mkDerivation, base, bytestring, http-media, lens, pandoc-types
, servant-docs, text, unordered-containers
@@ -193802,7 +193734,6 @@ self: {
base base-compat hspec http-client QuickCheck quickcheck-io servant
servant-client servant-server transformers warp
];
- jailbreak = true;
description = "QuickCheck entire APIs";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -194110,21 +194041,21 @@ self: {
({ mkDerivation, aeson, attoparsec, base, base-compat
, base64-bytestring, bytestring, bytestring-conversion, containers
, directory, doctest, exceptions, filemanip, filepath, hspec
- , hspec-wai, http-api-data, http-types, mmorph, mtl, network
- , network-uri, parsec, QuickCheck, safe, servant
- , should-not-typecheck, split, string-conversions, system-filepath
- , temporary, text, transformers, transformers-compat, wai
- , wai-app-static, wai-extra, warp, word8
+ , hspec-wai, http-api-data, http-types, mtl, network, network-uri
+ , parsec, QuickCheck, safe, servant, should-not-typecheck, split
+ , string-conversions, system-filepath, temporary, text
+ , transformers, transformers-compat, wai, wai-app-static, wai-extra
+ , warp, word8
}:
mkDerivation {
pname = "servant-server";
- version = "0.6.1";
- sha256 = "4d1b0871008945009bf4d4756108cc1376edbd08e49ce96d9c1365d9b382ec07";
+ version = "0.7.1";
+ sha256 = "ba4f10cc14c216cf27e08cae7e7cbb717930400e46dbecc9b8354751584909eb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson attoparsec base base-compat base64-bytestring bytestring
- containers filepath http-api-data http-types mmorph mtl network
+ containers filepath http-api-data http-types mtl network
network-uri safe servant split string-conversions system-filepath
text transformers transformers-compat wai wai-app-static warp word8
];
@@ -194136,48 +194067,11 @@ self: {
safe servant should-not-typecheck string-conversions temporary text
transformers transformers-compat wai wai-extra warp
];
- homepage = "http://haskell-servant.github.io/";
+ homepage = "http://haskell-servant.readthedocs.org/";
description = "A family of combinators for defining webservices APIs and serving them";
license = stdenv.lib.licenses.bsd3;
}) {};
- "servant-server_0_7" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, base-compat
- , base64-bytestring, bytestring, bytestring-conversion, containers
- , directory, doctest, exceptions, filemanip, filepath, hspec
- , hspec-wai, http-api-data, http-types, mmorph, mtl, network
- , network-uri, parsec, QuickCheck, safe, servant
- , should-not-typecheck, split, string-conversions, system-filepath
- , temporary, text, transformers, transformers-compat, wai
- , wai-app-static, wai-extra, warp, word8
- }:
- mkDerivation {
- pname = "servant-server";
- version = "0.7";
- sha256 = "ea58c79d6ac65d0beda9e64c1cde420d77a355be4cab0b48738ccf3adad4eb0b";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson attoparsec base base-compat base64-bytestring bytestring
- containers filepath http-api-data http-types mmorph mtl network
- network-uri safe servant split string-conversions system-filepath
- text transformers transformers-compat wai wai-app-static warp word8
- ];
- executableHaskellDepends = [ aeson base servant text wai warp ];
- testHaskellDepends = [
- aeson base base-compat base64-bytestring bytestring
- bytestring-conversion directory doctest exceptions filemanip
- filepath hspec hspec-wai http-types mtl network parsec QuickCheck
- safe servant should-not-typecheck string-conversions temporary text
- transformers transformers-compat wai wai-extra warp
- ];
- jailbreak = true;
- homepage = "http://haskell-servant.github.io/";
- description = "A family of combinators for defining webservices APIs and serving them";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"servant-swagger_0_1_1" = callPackage
({ mkDerivation, aeson, aeson-qq, base, bytestring, hspec
, http-media, lens, servant, swagger2, text, time
@@ -194258,8 +194152,8 @@ self: {
pname = "servant-yaml";
version = "0.1.0.0";
sha256 = "c917d9b046b06a9c4386f743a78142c27cf7f0ec1ad8562770ab9828f2ee3204";
- revision = "6";
- editedCabalFile = "a9fa85d3e31c0057aa1144044436cc833a1a46165760b03e00e4c23bce578cb0";
+ revision = "7";
+ editedCabalFile = "9a296b06cf199ab8e8ff19172601c239c77d885196a258ee5f4eaac4ebe34e66";
libraryHaskellDepends = [
base bytestring http-media servant yaml
];
@@ -194725,6 +194619,7 @@ self: {
isExecutable = true;
libraryHaskellDepends = [ base random vty ];
executableHaskellDepends = [ base ];
+ jailbreak = true;
description = "A console interface to the game of Set";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -196859,22 +196754,25 @@ self: {
}) {};
"sifflet" = callPackage
- ({ mkDerivation, base, cairo, containers, directory, fgl, filepath
- , glib, gtk, hxt, mtl, parsec, process, sifflet-lib, unix
+ ({ mkDerivation, base, Cabal, cairo, containers, directory, fgl
+ , filepath, glib, gtk, HUnit, hxt, mtl, parsec, process, text, unix
}:
mkDerivation {
pname = "sifflet";
- version = "2.2.1";
- sha256 = "927045ed0cd2e524db59361f80bebba48d9a2d79bc9bdcf2166bcfa043d25075";
- isLibrary = false;
+ version = "2.3.0";
+ sha256 = "0415b97daa7be921421716fbda8e5ab8138f707b636b0a45db5580df842d0ed4";
+ isLibrary = true;
isExecutable = true;
- executableHaskellDepends = [
+ libraryHaskellDepends = [
base cairo containers directory fgl filepath glib gtk hxt mtl
- parsec process sifflet-lib unix
+ parsec process text unix
];
- jailbreak = true;
- homepage = "http://mypage.iu.edu/~gdweber/software/sifflet/";
- description = "A simple, visual, functional programming language";
+ executableHaskellDepends = [ base unix ];
+ testHaskellDepends = [
+ base Cabal cairo containers fgl HUnit parsec process
+ ];
+ homepage = "http://pages.iu.edu/~gdweber/software/sifflet/";
+ description = "Simple, visual, functional language for learning about recursion";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -197495,7 +197393,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "simple-sendfile" = callPackage
+ "simple-sendfile_0_2_21" = callPackage
({ mkDerivation, base, bytestring, conduit, conduit-extra
, directory, hspec, HUnit, network, process, resourcet, unix
}:
@@ -197511,6 +197409,43 @@ self: {
doCheck = false;
description = "Cross platform library for the sendfile system call";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "simple-sendfile" = callPackage
+ ({ mkDerivation, base, bytestring, conduit, conduit-extra
+ , directory, hspec, HUnit, network, process, resourcet, unix
+ }:
+ mkDerivation {
+ pname = "simple-sendfile";
+ version = "0.2.22";
+ sha256 = "500dec6af5c3d0b3ba6fd514c75a5be6f91071ea6c99ad15f077447221a480fe";
+ libraryHaskellDepends = [ base bytestring network unix ];
+ testHaskellDepends = [
+ base bytestring conduit conduit-extra directory hspec HUnit network
+ process resourcet unix
+ ];
+ doCheck = false;
+ description = "Cross platform library for the sendfile system call";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "simple-sendfile_0_2_23" = callPackage
+ ({ mkDerivation, base, bytestring, conduit, conduit-extra
+ , directory, hspec, HUnit, network, process, resourcet, unix
+ }:
+ mkDerivation {
+ pname = "simple-sendfile";
+ version = "0.2.23";
+ sha256 = "75316d58bb67fe49decb8bff6dbf1dd90dbcfef2f14f9a4737b677152243f6b4";
+ libraryHaskellDepends = [ base bytestring network unix ];
+ testHaskellDepends = [
+ base bytestring conduit conduit-extra directory hspec HUnit network
+ process resourcet unix
+ ];
+ description = "Cross platform library for the sendfile system call";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"simple-server" = callPackage
@@ -197994,6 +197929,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "singletons_2_1" = callPackage
+ ({ mkDerivation, base, Cabal, containers, directory, filepath, mtl
+ , process, syb, tasty, tasty-golden, template-haskell, th-desugar
+ }:
+ mkDerivation {
+ pname = "singletons";
+ version = "2.1";
+ sha256 = "b9b294ba36b62cf77104600b436269bda0087497c010f2fb295bea1fec1a412c";
+ libraryHaskellDepends = [
+ base containers mtl syb template-haskell th-desugar
+ ];
+ testHaskellDepends = [
+ base Cabal directory filepath process tasty tasty-golden
+ ];
+ jailbreak = true;
+ homepage = "http://www.github.com/goldfirere/singletons";
+ description = "A framework for generating singleton types";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"sink" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -198394,8 +198350,8 @@ self: {
}:
mkDerivation {
pname = "slack-api";
- version = "0.7";
- sha256 = "2352c9ab62358547243620220c56836df20fb40e090e0234f643dda0460c90a2";
+ version = "0.8";
+ sha256 = "ebc98de706cb40a19ac2295c2129263240696f27412f8bcadf5816787b3cb446";
libraryHaskellDepends = [
aeson base bytestring containers errors HsOpenSSL io-streams lens
lens-aeson monad-loops mtl network network-uri openssl-streams text
@@ -199057,7 +199013,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "smtLib" = callPackage
+ "smtLib_1_0_7" = callPackage
({ mkDerivation, base, pretty }:
mkDerivation {
pname = "smtLib";
@@ -199068,9 +199024,10 @@ self: {
libraryHaskellDepends = [ base pretty ];
description = "A library for working with the SMTLIB format";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "smtLib_1_0_8" = callPackage
+ "smtLib" = callPackage
({ mkDerivation, base, pretty }:
mkDerivation {
pname = "smtLib";
@@ -199079,7 +199036,6 @@ self: {
libraryHaskellDepends = [ base pretty ];
description = "A library for working with the SMTLIB format";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"smtlib2" = callPackage
@@ -199838,6 +199794,23 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "snap-routes" = callPackage
+ ({ mkDerivation, base, blaze-builder, bytestring, containers
+ , filepath, http-types, mime-types, path-pieces, random, snap
+ , template-haskell, text
+ }:
+ mkDerivation {
+ pname = "snap-routes";
+ version = "0.0.1";
+ sha256 = "5ec5bff04474aef1d89318f9bc01fe8ef166f0a09c6c35b7b5003aca312afbcb";
+ libraryHaskellDepends = [
+ base blaze-builder bytestring containers filepath http-types
+ mime-types path-pieces random snap template-haskell text
+ ];
+ description = "Typesafe URLs for Snap applications";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"snap-server_0_9_4_5" = callPackage
({ mkDerivation, attoparsec, attoparsec-enumerator, base
, blaze-builder, blaze-builder-enumerator, bytestring
@@ -201591,6 +201564,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "sorted-list_0_1_5_0" = callPackage
+ ({ mkDerivation, base, deepseq }:
+ mkDerivation {
+ pname = "sorted-list";
+ version = "0.1.5.0";
+ sha256 = "e19bde4d9b22ce127bbf2fd194fd4854576c2f5b275620be3a4fdb29bcd479a0";
+ libraryHaskellDepends = [ base deepseq ];
+ homepage = "https://github.com/Daniel-Diaz/sorted-list/blob/master/README.md";
+ description = "Type-enforced sorted lists and related functions";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"sorting" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -203034,6 +203020,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "sscript" = callPackage
+ ({ mkDerivation, base, hspec }:
+ mkDerivation {
+ pname = "sscript";
+ version = "0.1.0.2";
+ sha256 = "c07c16c227b9dba9fb56262efcaa4e185fbf0dc5757e969b763c4a5000caf1da";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base hspec ];
+ homepage = "https://github.com/khalilfazal/sscript#readme";
+ description = "Formats Strings with subscript or superscript characters";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"ssh" = callPackage
({ mkDerivation, asn1-encoding, asn1-types, base, base64-string
, binary, bytestring, cereal, containers, crypto-api
@@ -203972,8 +203971,8 @@ self: {
pname = "stack";
version = "1.1.0";
sha256 = "58cce7048438bc452a81384493b4644034d5a0b456acd51bf7c19098a9cf406a";
- revision = "1";
- editedCabalFile = "6ea3e00f37c34ddbb05c71a6cf0db9c7d8cedcf48f16be66e347e02b4357b0c4";
+ revision = "2";
+ editedCabalFile = "7a4f166d4e7ebd88264bd6e7bbeb2be9485bd4d18bedca31093ed3c4c2094649";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -206034,7 +206033,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "stm-containers" = callPackage
+ "stm-containers_0_2_10" = callPackage
({ mkDerivation, base-prelude, focus, free, hashable, HTF, list-t
, loch-th, mtl, mtl-prelude, placeholders, primitive, QuickCheck
, transformers, unordered-containers
@@ -206055,6 +206054,29 @@ self: {
homepage = "https://github.com/nikita-volkov/stm-containers";
description = "Containers for STM";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "stm-containers" = callPackage
+ ({ mkDerivation, base-prelude, focus, free, hashable, HTF, list-t
+ , loch-th, mtl, mtl-prelude, placeholders, primitive, QuickCheck
+ , transformers, unordered-containers
+ }:
+ mkDerivation {
+ pname = "stm-containers";
+ version = "0.2.11";
+ sha256 = "f7eff1833da6c9ad18a5301912bbb477216347d7940f6495d398fbdedee27f8e";
+ libraryHaskellDepends = [
+ base-prelude focus hashable list-t primitive transformers
+ ];
+ testHaskellDepends = [
+ base-prelude focus free hashable HTF list-t loch-th mtl mtl-prelude
+ placeholders primitive QuickCheck transformers unordered-containers
+ ];
+ doCheck = false;
+ homepage = "https://github.com/nikita-volkov/stm-containers";
+ description = "Containers for STM";
+ license = stdenv.lib.licenses.mit;
}) {};
"stm-delay" = callPackage
@@ -206469,14 +206491,14 @@ self: {
}) {};
"stratosphere" = callPackage
- ({ mkDerivation, aeson, aeson-pretty, base, bytestring, ede, hlint
- , lens, system-fileio, system-filepath, tasty, tasty-hspec
- , template-haskell, text, unordered-containers
+ ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory
+ , ede, hlint, lens, system-fileio, system-filepath, tasty
+ , tasty-hspec, template-haskell, text, unordered-containers
}:
mkDerivation {
pname = "stratosphere";
- version = "0.1.0";
- sha256 = "4cc6816f1196fcf59d774f0267268935c7bbdf5d8953b8e0ebe1b92d5cb51d15";
+ version = "0.1.1";
+ sha256 = "2679f57659e9ed8d1ab2822b76d521b0692e3f21e1110bf21df432caa3a5dbc2";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -206488,9 +206510,9 @@ self: {
system-filepath template-haskell text unordered-containers
];
testHaskellDepends = [
- aeson aeson-pretty base bytestring ede hlint lens system-fileio
- system-filepath tasty tasty-hspec template-haskell text
- unordered-containers
+ aeson aeson-pretty base bytestring directory ede hlint lens
+ system-fileio system-filepath tasty tasty-hspec template-haskell
+ text unordered-containers
];
homepage = "https://github.com/frontrowed/stratosphere#readme";
description = "EDSL for AWS CloudFormation";
@@ -207004,7 +207026,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "streaming-commons" = callPackage
+ "streaming-commons_0_1_15_4" = callPackage
({ mkDerivation, array, async, base, blaze-builder, bytestring
, deepseq, directory, hspec, network, process, QuickCheck, random
, stm, text, transformers, unix, zlib
@@ -207024,6 +207046,29 @@ self: {
homepage = "https://github.com/fpco/streaming-commons";
description = "Common lower-level functions needed by various streaming data libraries";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "streaming-commons" = callPackage
+ ({ mkDerivation, array, async, base, blaze-builder, bytestring
+ , deepseq, directory, hspec, network, process, QuickCheck, random
+ , stm, text, transformers, unix, zlib
+ }:
+ mkDerivation {
+ pname = "streaming-commons";
+ version = "0.1.15.5";
+ sha256 = "7cdab71a7c696310bcac376dd9d7a1f8debd881198fc511b9140f853f6925389";
+ libraryHaskellDepends = [
+ array async base blaze-builder bytestring directory network process
+ random stm text transformers unix zlib
+ ];
+ testHaskellDepends = [
+ array async base blaze-builder bytestring deepseq hspec network
+ QuickCheck text unix zlib
+ ];
+ homepage = "https://github.com/fpco/streaming-commons";
+ description = "Common lower-level functions needed by various streaming data libraries";
+ license = stdenv.lib.licenses.mit;
}) {};
"streaming-histogram" = callPackage
@@ -207724,6 +207769,19 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "structural-traversal" = callPackage
+ ({ mkDerivation, base, HUnit, mtl, template-haskell }:
+ mkDerivation {
+ pname = "structural-traversal";
+ version = "0.1.0.0";
+ sha256 = "790057b83c3abd981f25554fb583e598bff4208be727bbd350ad1e83fbcef857";
+ libraryHaskellDepends = [ base mtl template-haskell ];
+ testHaskellDepends = [ base HUnit mtl ];
+ homepage = "http://github.com/nboldi/structural-traversal#readme";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"structured-haskell-mode" = callPackage
({ mkDerivation, applicative-quoters, base, descriptive, ghc-prim
, haskell-src-exts, text
@@ -209109,6 +209167,7 @@ self: {
base containers hashable HUnit network-uri old-locale semigroups
test-framework test-framework-hunit text time
];
+ jailbreak = true;
homepage = "https://bitbucket.org/doug_burke/swish/wiki/Home";
description = "A semantic web toolkit";
license = "LGPL";
@@ -212536,18 +212595,25 @@ self: {
}) {};
"telegram-api" = callPackage
- ({ mkDerivation, aeson, base, either, hspec, http-types, servant
- , servant-client, text
+ ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, either
+ , filepath, hjpath, hspec, http-api-data, http-client
+ , http-client-tls, http-media, http-types, mime-types
+ , optparse-applicative, servant, servant-client, string-conversions
+ , text, transformers, utf8-string
}:
mkDerivation {
pname = "telegram-api";
- version = "0.3.0.0";
- sha256 = "f32039ab9d0a6090c32a0b5d3c1ed83c6ecadf784cd97de680dce33eb52b880a";
+ version = "0.4.0.1";
+ sha256 = "e3df1db3136065619be332932e0f05985ab8411bdf8179b84fa65dd00971ba0a";
libraryHaskellDepends = [
- aeson base either servant servant-client text
+ aeson base bytestring either http-api-data http-client http-media
+ http-types mime-types servant servant-client string-conversions
+ text transformers
];
testHaskellDepends = [
- base hspec http-types servant servant-client text
+ aeson ansi-wl-pprint base filepath hjpath hspec http-client
+ http-client-tls http-types optparse-applicative servant
+ servant-client text transformers utf8-string
];
homepage = "http://github.com/klappvisor/haskell-telegram-api#readme";
description = "Telegram Bot API bindings";
@@ -213219,6 +213285,18 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "test-fixture" = callPackage
+ ({ mkDerivation, base, mtl }:
+ mkDerivation {
+ pname = "test-fixture";
+ version = "0.1.0.0";
+ sha256 = "2349b01c2d29c6645055155c4f0fade1d539a9909ba6a41edf4c0550b97e2459";
+ libraryHaskellDepends = [ base mtl ];
+ homepage = "http://github.com/cjdev/test-fixture#readme";
+ description = "Test monadic typeclasses deterministically using hooks";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"test-framework_0_8_0_3" = callPackage
({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, containers
, hostname, old-locale, random, regex-posix, time, xml
@@ -214908,7 +214986,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "text-zipper" = callPackage
+ "text-zipper_0_3_1" = callPackage
({ mkDerivation, base, text, vector }:
mkDerivation {
pname = "text-zipper";
@@ -214917,6 +214995,18 @@ self: {
libraryHaskellDepends = [ base text vector ];
description = "A text editor zipper library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "text-zipper" = callPackage
+ ({ mkDerivation, base, text, vector }:
+ mkDerivation {
+ pname = "text-zipper";
+ version = "0.4";
+ sha256 = "0a94fbdc2febc7656369b30c09fe4bcee1f9323547af40037a2adbee52a45d97";
+ libraryHaskellDepends = [ base text vector ];
+ description = "A text editor zipper library";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"text1" = callPackage
@@ -215214,6 +215304,8 @@ self: {
pname = "th-desugar";
version = "1.5.3";
sha256 = "209e979a0daee1e0264245754161531c3d1b198b3960c9062682db765de9cbae";
+ revision = "1";
+ editedCabalFile = "5320c5ef2aea345e394d55a3c5f1ea3998a214a44698bbff9b8fb0bf9b3d6f89";
libraryHaskellDepends = [
base containers mtl syb template-haskell th-lift th-orphans
];
@@ -215235,6 +215327,8 @@ self: {
pname = "th-desugar";
version = "1.5.4";
sha256 = "c83013c92f136fb8d94c4d1893cbcb6748cba19d63382536588b20eddf3997b7";
+ revision = "2";
+ editedCabalFile = "e29f050217971aa98418f5461dcf11fe89f1de422d5f5b99e9699b1139a3b817";
libraryHaskellDepends = [
base containers mtl syb template-haskell th-lift th-orphans
];
@@ -215256,6 +215350,8 @@ self: {
pname = "th-desugar";
version = "1.5.4.1";
sha256 = "d32902a53c31b557eab3c2f2e6723a56b3b038f8655cee26b9d700e2737fef0a";
+ revision = "1";
+ editedCabalFile = "6562d39a31104101bb4a688faa5ab3644187c839f3de75c521a860f78154f7da";
libraryHaskellDepends = [
base containers mtl syb template-haskell th-lift th-orphans
];
@@ -215277,6 +215373,8 @@ self: {
pname = "th-desugar";
version = "1.5.5";
sha256 = "db8cfe15c2b1c5b5e6c2105a0a16f409c9eb9b359c2f2c18e440d5562c5d38a3";
+ revision = "1";
+ editedCabalFile = "6dffacc4a25cfaa78844eb30be50f7e0c9c502c808c84279577308cb1ec8d1b8";
libraryHaskellDepends = [
base containers mtl syb template-haskell th-lift th-orphans
];
@@ -215289,6 +215387,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "th-desugar_1_6" = callPackage
+ ({ mkDerivation, base, containers, hspec, HUnit, mtl, syb
+ , template-haskell, th-expand-syns, th-lift, th-orphans
+ }:
+ mkDerivation {
+ pname = "th-desugar";
+ version = "1.6";
+ sha256 = "c8f8ece2bde9b12070ea50bc089fbc672f144659225d837478fbc793777f634f";
+ libraryHaskellDepends = [
+ base containers mtl syb template-haskell th-expand-syns th-lift
+ th-orphans
+ ];
+ testHaskellDepends = [
+ base containers hspec HUnit mtl syb template-haskell th-expand-syns
+ th-lift th-orphans
+ ];
+ homepage = "http://www.cis.upenn.edu/~eir/packages/th-desugar";
+ description = "Functions to desugar Template Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"th-expand-syns_0_3_0_4" = callPackage
({ mkDerivation, base, containers, syb, template-haskell }:
mkDerivation {
@@ -215345,7 +215465,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "th-extras" = callPackage
+ "th-extras_0_0_0_2" = callPackage
({ mkDerivation, base, syb, template-haskell }:
mkDerivation {
pname = "th-extras";
@@ -215357,6 +215477,19 @@ self: {
homepage = "https://github.com/mokus0/th-extras";
description = "A grab bag of functions for use with Template Haskell";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "th-extras" = callPackage
+ ({ mkDerivation, base, syb, template-haskell }:
+ mkDerivation {
+ pname = "th-extras";
+ version = "0.0.0.4";
+ sha256 = "8feff450aaf28ec4f08c45a5656c62879861a8e7f45591cb367d5351ddc3fbed";
+ libraryHaskellDepends = [ base syb template-haskell ];
+ homepage = "https://github.com/mokus0/th-extras";
+ description = "A grab bag of functions for use with Template Haskell";
+ license = stdenv.lib.licenses.publicDomain;
}) {};
"th-fold" = callPackage
@@ -215517,21 +215650,19 @@ self: {
}) {};
"th-lift-instances" = callPackage
- ({ mkDerivation, base, bytestring, containers, directory, doctest
- , filepath, QuickCheck, template-haskell, text, th-lift, vector
+ ({ mkDerivation, base, bytestring, containers, QuickCheck
+ , template-haskell, text, th-lift, vector
}:
mkDerivation {
pname = "th-lift-instances";
- version = "0.1.6";
- sha256 = "537ebabc98a9026292813ad2f48a3ca68601cb0fcdf559f579405da385ca40e5";
+ version = "0.1.7";
+ sha256 = "9497a844d352bca5739ac5ce873e501d4cc8abcde54c2d76c2d23263adfb5265";
libraryHaskellDepends = [
base bytestring containers template-haskell text th-lift vector
];
testHaskellDepends = [
- base bytestring containers directory doctest filepath QuickCheck
- template-haskell text vector
+ base bytestring containers QuickCheck template-haskell text vector
];
- jailbreak = true;
homepage = "http://github.com/bennofs/th-lift-instances/";
description = "Lift instances for template-haskell for common data types";
license = stdenv.lib.licenses.bsd3;
@@ -215715,7 +215846,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "th-reify-many" = callPackage
+ "th-reify-many_0_1_4_1" = callPackage
({ mkDerivation, base, containers, mtl, safe, template-haskell
, th-expand-syns
}:
@@ -215730,9 +215861,10 @@ self: {
homepage = "http://github.com/mgsloan/th-reify-many";
description = "Recurseively reify template haskell datatype info";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "th-reify-many_0_1_6" = callPackage
+ "th-reify-many" = callPackage
({ mkDerivation, base, containers, mtl, safe, template-haskell
, th-expand-syns
}:
@@ -215747,7 +215879,6 @@ self: {
homepage = "http://github.com/mgsloan/th-reify-many";
description = "Recurseively reify template haskell datatype info";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"th-sccs" = callPackage
@@ -216435,6 +216566,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "tidal-serial" = callPackage
+ ({ mkDerivation, base, bytestring, containers, serialport, tidal }:
+ mkDerivation {
+ pname = "tidal-serial";
+ version = "0.8";
+ sha256 = "8d1737f82e01ee80c3cf833f018f159a4e70afab7043fcdbd0fed3c04efe63db";
+ libraryHaskellDepends = [
+ base bytestring containers serialport tidal
+ ];
+ jailbreak = true;
+ homepage = "http://tidalcycles.org/";
+ description = "Serial support for tidal";
+ license = stdenv.lib.licenses.gpl3;
+ }) {};
+
"tidal-vis" = callPackage
({ mkDerivation, base, cairo, colour, tidal }:
mkDerivation {
@@ -217736,32 +217882,6 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "tls" = callPackage
- ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring
- , cereal, cryptonite, data-default-class, hourglass, memory, mtl
- , network, QuickCheck, tasty, tasty-quickcheck, transformers, x509
- , x509-store, x509-validation
- }:
- mkDerivation {
- pname = "tls";
- version = "1.3.6";
- sha256 = "72285fbc0f79f3138213cbe493a0bb10780becb1469b0e2c7aa840e6ba04dd62";
- revision = "1";
- editedCabalFile = "37d05226822e7949fe96455f2e8130a454700c65c87bec7745cad0bcc1a8379c";
- libraryHaskellDepends = [
- asn1-encoding asn1-types async base bytestring cereal cryptonite
- data-default-class memory mtl network transformers x509 x509-store
- x509-validation
- ];
- testHaskellDepends = [
- base bytestring cereal cryptonite data-default-class hourglass mtl
- QuickCheck tasty tasty-quickcheck x509 x509-validation
- ];
- homepage = "http://github.com/vincenthz/hs-tls";
- description = "TLS/SSL protocol native implementation (Server and Client)";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
"tls_1_3_7" = callPackage
({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring
, cereal, cryptonite, data-default-class, hourglass, memory, mtl
@@ -217789,6 +217909,30 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "tls" = callPackage
+ ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring
+ , cereal, cryptonite, data-default-class, hourglass, memory, mtl
+ , network, QuickCheck, tasty, tasty-quickcheck, transformers, x509
+ , x509-store, x509-validation
+ }:
+ mkDerivation {
+ pname = "tls";
+ version = "1.3.8";
+ sha256 = "b440cf011c3e7af89e1ed719c714ab1001e8d3b13ef9dd3660019d88826bb1e5";
+ libraryHaskellDepends = [
+ asn1-encoding asn1-types async base bytestring cereal cryptonite
+ data-default-class memory mtl network transformers x509 x509-store
+ x509-validation
+ ];
+ testHaskellDepends = [
+ base bytestring cereal cryptonite data-default-class hourglass mtl
+ QuickCheck tasty tasty-quickcheck x509 x509-validation
+ ];
+ homepage = "http://github.com/vincenthz/hs-tls";
+ description = "TLS/SSL protocol native implementation (Server and Client)";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"tls-debug_0_3_4" = callPackage
({ mkDerivation, base, bytestring, cprng-aes, crypto-pubkey
, data-default-class, network, pem, time, tls, x509, x509-system
@@ -217853,26 +217997,6 @@ self: {
}) {};
"tls-debug" = callPackage
- ({ mkDerivation, base, bytestring, cryptonite, data-default-class
- , network, pem, time, tls, x509, x509-store, x509-system
- , x509-validation
- }:
- mkDerivation {
- pname = "tls-debug";
- version = "0.4.3";
- sha256 = "40e34f1a0635c006ecd495bb44b8f24587052f2277236254308fe7d5f2b6312d";
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- base bytestring cryptonite data-default-class network pem time tls
- x509 x509-store x509-system x509-validation
- ];
- homepage = "http://github.com/vincenthz/hs-tls";
- description = "Set of programs for TLS testing and debugging";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "tls-debug_0_4_4" = callPackage
({ mkDerivation, base, bytestring, cryptonite, data-default-class
, network, pem, time, tls, x509, x509-store, x509-system
, x509-validation
@@ -217890,7 +218014,6 @@ self: {
homepage = "http://github.com/vincenthz/hs-tls";
description = "Set of programs for TLS testing and debugging";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"tls-extra" = callPackage
@@ -217932,21 +218055,27 @@ self: {
}) {};
"tn" = callPackage
- ({ mkDerivation, base, bytestring, containers, directory, process
- , safe, text, time, yaml
+ ({ mkDerivation, aeson, base, bytestring, directory, file-embed
+ , optparse-applicative, optparse-helper, optparse-simple, pager
+ , text, time, vector, yaml
}:
mkDerivation {
pname = "tn";
- version = "1.0.2.1";
- sha256 = "be665fab37226ff6bfe94cce7ab2c195d4a91bea2536923a58098eb1d05b501e";
- isLibrary = false;
+ version = "4.1.0.0";
+ sha256 = "50f7f11a98410900517e89a511477c7a3aebcc57e80a4f97a1c1c33e5bc405e1";
+ isLibrary = true;
isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring directory file-embed optparse-simple pager
+ text time vector yaml
+ ];
executableHaskellDepends = [
- base bytestring containers directory process safe text time yaml
+ base bytestring file-embed optparse-applicative optparse-helper
];
jailbreak = true;
+ homepage = "https://github.com/pharpend/tn";
description = "A simple daily journal program";
- license = stdenv.lib.licenses.gpl3;
+ license = stdenv.lib.licenses.isc;
}) {};
"tnet" = callPackage
@@ -218467,14 +218596,13 @@ self: {
}:
mkDerivation {
pname = "tracetree";
- version = "0.1.0.0";
- sha256 = "f4dcb708ed295ba09068560f65600242b0b59357e119d1868830ca2dfc724b1c";
+ version = "0.1.0.1";
+ sha256 = "12d0eb7923a905fff4b92c7f4f187a4715ba95883ac1df5e0a7efb59427f5115";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base bifunctors containers json mtl transformers
];
- jailbreak = true;
description = "Visualize Haskell data structures as edge-labeled trees";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -219318,7 +219446,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "true-name" = callPackage
+ "true-name_0_1_0_1" = callPackage
({ mkDerivation, base, containers, template-haskell, time }:
mkDerivation {
pname = "true-name";
@@ -219329,6 +219457,20 @@ self: {
homepage = "https://github.com/liyang/true-name";
description = "Template Haskell hack to violate module abstractions";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "true-name" = callPackage
+ ({ mkDerivation, base, containers, template-haskell, time }:
+ mkDerivation {
+ pname = "true-name";
+ version = "0.1.0.2";
+ sha256 = "067627890569fe5a241b6bd7e0de44b2f2fa22a2e9e2e29eaed6aadc2e6e1cb0";
+ libraryHaskellDepends = [ base template-haskell ];
+ testHaskellDepends = [ base containers template-haskell time ];
+ homepage = "https://github.com/liyang/true-name";
+ description = "Template Haskell hack to violate module abstractions";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"truelevel" = callPackage
@@ -219892,6 +220034,18 @@ self: {
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
+ "turingMachine" = callPackage
+ ({ mkDerivation, base, containers }:
+ mkDerivation {
+ pname = "turingMachine";
+ version = "0.1.3.0";
+ sha256 = "26b255719f25bdf73a0ce45e043b68bd57a4ebd8f582311aa6e0c8e6ec7efafc";
+ libraryHaskellDepends = [ base containers ];
+ homepage = "https://github.com/sanjorgek/turingMachine";
+ description = "An implementation of Turing Machine and Automaton";
+ license = stdenv.lib.licenses.gpl3;
+ }) {};
+
"turkish-deasciifier" = callPackage
({ mkDerivation, base, containers, HUnit, vector }:
mkDerivation {
@@ -220269,6 +220423,8 @@ self: {
pname = "twentyseven";
version = "0.0.0";
sha256 = "471690467742286cc9e4eb744b06d2a298a9c770fdb8ac0c816774d4c0b70133";
+ revision = "1";
+ editedCabalFile = "32b1d53bc3a5a56998f35452cbcdc9d00db7e4848e50ebd8fec2607d2243f147";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -220631,6 +220787,7 @@ self: {
lens-aeson network-uri resourcet template-haskell text time
twitter-types twitter-types-lens
];
+ doCheck = false;
homepage = "https://github.com/himura/twitter-conduit";
description = "Twitter API package with conduit interface and Streaming API support";
license = stdenv.lib.licenses.bsd3;
@@ -221295,7 +221452,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "type-list" = callPackage
+ "type-list_0_3_0_2" = callPackage
({ mkDerivation, base, singletons }:
mkDerivation {
pname = "type-list";
@@ -221304,6 +221461,18 @@ self: {
libraryHaskellDepends = [ base singletons ];
description = "Operations on type-level lists and tuples";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "type-list" = callPackage
+ ({ mkDerivation, base, singletons }:
+ mkDerivation {
+ pname = "type-list";
+ version = "0.3.0.3";
+ sha256 = "ccb5ba7fcce21c2c0ebf8567adbac662f705abb6250637468dacd1d365ff83c0";
+ libraryHaskellDepends = [ base singletons ];
+ description = "Operations on type-level lists and tuples";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"type-natural" = callPackage
@@ -221634,7 +221803,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "typelits-witnesses" = callPackage
+ "typelits-witnesses_0_2_0_0" = callPackage
({ mkDerivation, base, constraints, reflection }:
mkDerivation {
pname = "typelits-witnesses";
@@ -221644,6 +221813,23 @@ self: {
homepage = "https://github.com/mstksg/typelits-witnesses";
description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "typelits-witnesses" = callPackage
+ ({ mkDerivation, base, base-compat, constraints, reflection
+ , transformers
+ }:
+ mkDerivation {
+ pname = "typelits-witnesses";
+ version = "0.2.1.0";
+ sha256 = "43da6f58b1ee54ad8c03d29311db55df82fbd9e7fa3a6ae6ace257f86e690ba7";
+ libraryHaskellDepends = [
+ base base-compat constraints reflection transformers
+ ];
+ homepage = "https://github.com/mstksg/typelits-witnesses";
+ description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits";
+ license = stdenv.lib.licenses.mit;
}) {};
"typeof" = callPackage
@@ -222386,17 +222572,16 @@ self: {
}) {};
"uncertain" = callPackage
- ({ mkDerivation, ad, base, containers, free, mwc-random, primitive
- , transformers
+ ({ mkDerivation, ad, base, base-compat, containers, free
+ , mwc-random, primitive, transformers
}:
mkDerivation {
pname = "uncertain";
- version = "0.2.0.0";
- sha256 = "3f3d46ee31b7ad2328761f6e7225bde5c94e61fa35b078838b8ae44de15598b3";
- revision = "1";
- editedCabalFile = "1057e2e280de08d8a148f7a29028d6d04083adb6bd8b375bf9fed1513e937c86";
+ version = "0.3.0.0";
+ sha256 = "91aedeb132b145799cc84fd409e60b1688c023b55adf4bcdf405327b2e1f0f8b";
libraryHaskellDepends = [
- ad base containers free mwc-random primitive transformers
+ ad base base-compat containers free mwc-random primitive
+ transformers
];
homepage = "https://github.com/mstksg/uncertain";
description = "Manipulating numbers with inherent experimental/measurement uncertainty";
@@ -224747,6 +224932,8 @@ self: {
pname = "uu-parsinglib";
version = "2.9.1";
sha256 = "0d9c0fa5a8d9fcce596cc46c7caff3c19313eedc5ec641a216d6a8848c032c32";
+ revision = "1";
+ editedCabalFile = "6698743a35d0791453123aecd3547df4bec9e6fa8cf326a052e3e3e13e842c85";
libraryHaskellDepends = [ base ListLike time uu-interleaved ];
homepage = "http://www.cs.uu.nl/wiki/bin/view/HUT/ParserCombinators";
description = "Fast, online, error-correcting, monadic, applicative, merging, permuting, interleaving, idiomatic parser combinators";
@@ -226959,14 +227146,29 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "vinyl-operational" = callPackage
+ ({ mkDerivation, base, operational, operational-extra, vinyl-plus
+ }:
+ mkDerivation {
+ pname = "vinyl-operational";
+ version = "0.1.1";
+ sha256 = "ba556484509f789d6c8d49655d8f0a77d12a16179ffe59335d0b037c02c185a5";
+ libraryHaskellDepends = [
+ base operational operational-extra vinyl-plus
+ ];
+ homepage = "http://github.com/andrewthad/vinyl-operational#readme";
+ description = "Initial project template from stack";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"vinyl-plus" = callPackage
({ mkDerivation, base, contravariant, doctest, ghc-prim
, profunctors, transformers, unordered-containers, vinyl
}:
mkDerivation {
pname = "vinyl-plus";
- version = "0.1.0.0";
- sha256 = "438d84c4f71422229b673b14aee7bb14defa8a3f7b9232f67a8a4f91fb2a29d0";
+ version = "0.1.1";
+ sha256 = "f8a195c81456db7694f0e44966e2907d90a9417d231a3aece78e9e9a35905697";
libraryHaskellDepends = [
base contravariant ghc-prim profunctors transformers
unordered-containers vinyl
@@ -227303,7 +227505,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs.gnome) vte;};
- "vty" = callPackage
+ "vty_5_4_0" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, Cabal, containers
, data-default, deepseq, directory, filepath, hashable, HUnit, lens
, mtl, parallel, parsec, QuickCheck, quickcheck-assertions, random
@@ -227334,6 +227536,43 @@ self: {
homepage = "https://github.com/coreyoconnor/vty";
description = "A simple terminal UI library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "vty" = callPackage
+ ({ mkDerivation, base, blaze-builder, bytestring, Cabal, containers
+ , data-default, deepseq, directory, filepath, hashable, HUnit
+ , microlens, microlens-mtl, microlens-th, mtl, parallel, parsec
+ , QuickCheck, quickcheck-assertions, random, smallcheck, stm
+ , string-qq, terminfo, test-framework, test-framework-hunit
+ , test-framework-smallcheck, text, transformers, unix, utf8-string
+ , vector
+ }:
+ mkDerivation {
+ pname = "vty";
+ version = "5.5.0";
+ sha256 = "9e185e42aff3385767b2f025765d896d8f503719f08cc6484f1c12b795eca41d";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base blaze-builder bytestring containers data-default deepseq
+ directory filepath hashable microlens microlens-mtl microlens-th
+ mtl parallel parsec stm terminfo text transformers unix utf8-string
+ vector
+ ];
+ executableHaskellDepends = [
+ base containers data-default microlens microlens-mtl mtl
+ ];
+ testHaskellDepends = [
+ base blaze-builder bytestring Cabal containers data-default deepseq
+ HUnit microlens microlens-mtl mtl QuickCheck quickcheck-assertions
+ random smallcheck stm string-qq terminfo test-framework
+ test-framework-hunit test-framework-smallcheck text unix
+ utf8-string vector
+ ];
+ homepage = "https://github.com/coreyoconnor/vty";
+ description = "A simple terminal UI library";
+ license = stdenv.lib.licenses.bsd3;
}) {};
"vty-examples" = callPackage
@@ -227343,8 +227582,8 @@ self: {
}:
mkDerivation {
pname = "vty-examples";
- version = "5.4.0";
- sha256 = "4c324ed6d398c8792f84860252680ee2b2a3a32ed158a647423818ee08b7ca17";
+ version = "5.5.0";
+ sha256 = "0cc9e351599fcbb0e8f0ee1e60cc31eeb002b8c03bfeb6d3e3d4ec4ed14f5a35";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -229125,7 +229364,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "wai-handler-launch" = callPackage
+ "wai-handler-launch_3_0_1" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, http-types
, process, streaming-commons, transformers, wai, warp
}:
@@ -229139,6 +229378,23 @@ self: {
];
description = "Launch a web app in the default browser";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "wai-handler-launch" = callPackage
+ ({ mkDerivation, async, base, blaze-builder, bytestring, http-types
+ , process, streaming-commons, transformers, wai, warp
+ }:
+ mkDerivation {
+ pname = "wai-handler-launch";
+ version = "3.0.2";
+ sha256 = "06189f6fbaa20baa02dcf19790f017ade73dce2fa57e941e8770cdc2a81ed1c0";
+ libraryHaskellDepends = [
+ async base blaze-builder bytestring http-types process
+ streaming-commons transformers wai warp
+ ];
+ description = "Launch a web app in the default browser";
+ license = stdenv.lib.licenses.mit;
}) {};
"wai-handler-scgi" = callPackage
@@ -230144,6 +230400,7 @@ self: {
base blaze-builder bytestring case-insensitive http-types tasty
tasty-hunit tasty-quickcheck wai
];
+ doCheck = false;
homepage = "https://gitlab.com/twittner/wai-predicates/";
description = "WAI request predicates";
license = stdenv.lib.licenses.mpl20;
@@ -230848,7 +231105,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "wai-websockets" = callPackage
+ "wai-websockets_3_0_0_8" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, case-insensitive
, file-embed, http-types, network, text, transformers, wai
, wai-app-static, warp, websockets
@@ -230871,6 +231128,32 @@ self: {
homepage = "http://github.com/yesodweb/wai";
description = "Provide a bridge between WAI and the websockets package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "wai-websockets" = callPackage
+ ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive
+ , file-embed, http-types, network, text, transformers, wai
+ , wai-app-static, warp, websockets
+ }:
+ mkDerivation {
+ pname = "wai-websockets";
+ version = "3.0.0.9";
+ sha256 = "a2476dcd0474a4d3322b4d0bbf0418eebb834ad03cecd43d1648d0c73c9f2883";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base blaze-builder bytestring case-insensitive http-types network
+ transformers wai websockets
+ ];
+ executableHaskellDepends = [
+ base blaze-builder bytestring case-insensitive file-embed
+ http-types network text transformers wai wai-app-static warp
+ websockets
+ ];
+ homepage = "http://github.com/yesodweb/wai";
+ description = "Provide a bridge between WAI and the websockets package";
+ license = stdenv.lib.licenses.mit;
}) {};
"wait-handle" = callPackage
@@ -232613,15 +232896,14 @@ self: {
}:
mkDerivation {
pname = "webapp";
- version = "0.2.0";
- sha256 = "47c0e2d790cc43318241764b73be95f53d651afcbfb9c9e7e7e1fe3348ff7572";
+ version = "0.3.4";
+ sha256 = "41a63dcfcb5233d0aa8d24a3a63e3c4fbcea8a96f7932d5db65e92f4a96d17f4";
libraryHaskellDepends = [
aeson base base16-bytestring blaze-builder bytestring
case-insensitive http-types mtl network optparse-applicative
regex-posix stm streaming-commons text transformers unix wai warp
warp-tls zlib
];
- jailbreak = true;
homepage = "https://github.com/fhsjaagshs/webapp";
description = "Haskell web app framework based on WAI & Warp";
license = stdenv.lib.licenses.mit;
@@ -233663,19 +233945,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "werewolf_1_1_0_0" = callPackage
+ "werewolf_1_2_0_2" = callPackage
({ mkDerivation, aeson, base, containers, directory, extra
- , filepath, lens, MonadRandom, mtl, optparse-applicative
- , random-shuffle, text, transformers
+ , filepath, interpolate, lens, MonadRandom, mtl
+ , optparse-applicative, random-shuffle, template-haskell, text
+ , transformers
}:
mkDerivation {
pname = "werewolf";
- version = "1.1.0.0";
- sha256 = "866edf6fccb7ddc54e851f1d6da17ed661302fe9520de3a5cd493bd65b5e35b1";
+ version = "1.2.0.2";
+ sha256 = "606c1561b96511bedbcfc363447bd524c767b1f67cb45c8f904d121c13fcb852";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson base containers extra lens mtl text transformers
+ aeson base containers extra interpolate lens mtl template-haskell
+ text transformers
];
executableHaskellDepends = [
aeson base containers directory extra filepath lens MonadRandom mtl
@@ -233694,8 +233978,8 @@ self: {
}:
mkDerivation {
pname = "werewolf-slack";
- version = "1.0.1.0";
- sha256 = "fb3e1fdb51117c23b4edb0c0022b36e26cddbc04da280b85481af18a097ab6e1";
+ version = "1.0.1.2";
+ sha256 = "536d64b910922f081423300fbf6fcf4a333db2886200e5a418a669dbd3a945ce";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -233707,27 +233991,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "werewolf-slack_1_0_1_1" = callPackage
- ({ mkDerivation, aeson, base, bytestring, extra, http-client
- , http-client-tls, http-types, mtl, optparse-applicative, process
- , text, wai, warp, werewolf
- }:
- mkDerivation {
- pname = "werewolf-slack";
- version = "1.0.1.1";
- sha256 = "1f54514a3482e7afecfb14d60dfb3f98e46f562973727e382eb76db61fdbc73a";
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- aeson base bytestring extra http-client http-client-tls http-types
- mtl optparse-applicative process text wai warp werewolf
- ];
- homepage = "https://github.com/hjwylde/werewolf-slack";
- description = "A chat interface for playing werewolf in Slack";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"wheb-mongo" = callPackage
({ mkDerivation, base, bson, mongoDB, mtl, text, Wheb }:
mkDerivation {
@@ -235852,6 +236115,7 @@ self: {
executableHaskellDepends = [
base cairo graphviz gtk3 text transformers
];
+ jailbreak = true;
description = "Parse Graphviz xdot files and interactively view them using GTK and Cairo";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
@@ -236801,7 +237065,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "xml-conduit" = callPackage
+ "xml-conduit_1_3_4_2" = callPackage
({ mkDerivation, attoparsec, base, blaze-builder, blaze-html
, blaze-markup, bytestring, conduit, conduit-extra, containers
, data-default, deepseq, hspec, HUnit, monad-control, resourcet
@@ -236823,6 +237087,31 @@ self: {
homepage = "http://github.com/snoyberg/xml";
description = "Pure-Haskell utilities for dealing with XML with the conduit package";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "xml-conduit" = callPackage
+ ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html
+ , blaze-markup, bytestring, conduit, conduit-extra, containers
+ , data-default, deepseq, hspec, HUnit, monad-control, resourcet
+ , text, transformers, xml-types
+ }:
+ mkDerivation {
+ pname = "xml-conduit";
+ version = "1.3.5";
+ sha256 = "25635a066b6a17a0d6c038ddf974a48b6d455d8fa14989f99341703da344dc83";
+ libraryHaskellDepends = [
+ attoparsec base blaze-builder blaze-html blaze-markup bytestring
+ conduit conduit-extra containers data-default deepseq monad-control
+ resourcet text transformers xml-types
+ ];
+ testHaskellDepends = [
+ base blaze-markup bytestring conduit containers hspec HUnit
+ resourcet text transformers xml-types
+ ];
+ homepage = "http://github.com/snoyberg/xml";
+ description = "Pure-Haskell utilities for dealing with XML with the conduit package";
+ license = stdenv.lib.licenses.mit;
}) {};
"xml-conduit-parse" = callPackage
@@ -238634,8 +238923,8 @@ self: {
}:
mkDerivation {
pname = "yaml-light-lens";
- version = "0.3.3.1";
- sha256 = "a8d82e1e6a32739dce6fa754c3ef18818b8c709a1ce077c3f554cfc745f3a735";
+ version = "0.3.3.2";
+ sha256 = "27380c456128dc72f117febaf3ade7e8c7a916abc3052e5de9d8ffd5ca01df0d";
libraryHaskellDepends = [
base bytestring bytestring-lexing containers lens yaml-light
];
@@ -243313,8 +243602,8 @@ self: {
}:
mkDerivation {
pname = "yesod-job-queue";
- version = "0.2.0.1";
- sha256 = "872f8f53fbe4f350a08493beaa59a4ad9103e3d3419abbdfbf92ac3122962ebf";
+ version = "0.3.0.0";
+ sha256 = "34da4826fd12624cf0d93f72e16a7722cc7510dcf37381bed89cc8bfabe42912";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -243332,33 +243621,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "yesod-job-queue_0_3_0_0" = callPackage
- ({ mkDerivation, aeson, api-field-json-th, base, bytestring
- , classy-prelude-yesod, cron, file-embed, hedis, lens, monad-logger
- , persistent-sqlite, resourcet, stm, text, time, uuid, yesod
- , yesod-core
- }:
- mkDerivation {
- pname = "yesod-job-queue";
- version = "0.3.0.0";
- sha256 = "34da4826fd12624cf0d93f72e16a7722cc7510dcf37381bed89cc8bfabe42912";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson api-field-json-th base bytestring classy-prelude-yesod cron
- file-embed hedis lens monad-logger stm text time uuid yesod
- ];
- executableHaskellDepends = [
- base classy-prelude-yesod hedis monad-logger persistent-sqlite
- resourcet yesod yesod-core
- ];
- testHaskellDepends = [ base ];
- homepage = "https://github.com/nakaji-dayo/yesod-job-queue#readme";
- description = "Background jobs library for Yesod";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"yesod-json" = callPackage
({ mkDerivation, base, yesod-core }:
mkDerivation {
@@ -245107,7 +245369,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "yi" = callPackage
+ "yi_0_12_4" = callPackage
({ mkDerivation, array, base, binary, bytestring, Cabal, containers
, data-default, directory, dlist, dynamic-state, dyre, exceptions
, filepath, glib, gtk, hashable, hint, HUnit, lens, mtl, old-locale
@@ -245141,10 +245403,10 @@ self: {
homepage = "https://yi-editor.github.io";
description = "The Haskell-Scriptable Editor";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "yi_0_12_5" = callPackage
+ "yi" = callPackage
({ mkDerivation, array, base, binary, bytestring, Cabal, containers
, data-default, directory, dlist, dynamic-state, dyre, exceptions
, filepath, glib, gtk, hashable, hint, HUnit, lens, mtl, old-locale
@@ -245178,7 +245440,7 @@ self: {
homepage = "https://yi-editor.github.io";
description = "The Haskell-Scriptable Editor";
license = stdenv.lib.licenses.gpl2;
- hydraPlatforms = stdenv.lib.platforms.none;
+ hydraPlatforms = [ "i686-linux" "x86_64-linux" ];
}) {};
"yi-contrib" = callPackage
@@ -245965,7 +246227,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) zeromq;};
- "zeromq4-haskell" = callPackage
+ "zeromq4-haskell_0_6_4" = callPackage
({ mkDerivation, async, base, bytestring, containers, exceptions
, QuickCheck, semigroups, tasty, tasty-hunit, tasty-quickcheck
, transformers, zeromq
@@ -245984,9 +246246,10 @@ self: {
homepage = "http://github.com/twittner/zeromq-haskell/";
description = "Bindings to ZeroMQ 4.x";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) zeromq;};
- "zeromq4-haskell_0_6_5" = callPackage
+ "zeromq4-haskell" = callPackage
({ mkDerivation, async, base, bytestring, containers, exceptions
, monad-control, QuickCheck, semigroups, tasty, tasty-hunit
, tasty-quickcheck, transformers, transformers-base, zeromq
@@ -246006,7 +246269,6 @@ self: {
homepage = "https://gitlab.com/twittner/zeromq-haskell/";
description = "Bindings to ZeroMQ 4.x";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) zeromq;};
"zeroth" = callPackage
@@ -246102,8 +246364,8 @@ self: {
}:
mkDerivation {
pname = "zip";
- version = "0.1.2";
- sha256 = "a89517ad4b2d2addc7d4c75f3bf51c37770d9ffafc291573d51774b0c36d11fc";
+ version = "0.1.3";
+ sha256 = "9e7a79126ab12c198efcae67dd07f860213ce5a6afb2217053f0342ffdb9e6d1";
libraryHaskellDepends = [
base bytestring bzlib-conduit case-insensitive cereal conduit
conduit-extra containers digest exceptions filepath mtl path
diff --git a/pkgs/development/interpreters/perl/default.nix b/pkgs/development/interpreters/perl/default.nix
index d3ee18e2ac8..11a7acd617c 100644
--- a/pkgs/development/interpreters/perl/default.nix
+++ b/pkgs/development/interpreters/perl/default.nix
@@ -102,7 +102,9 @@ let
# TODO: removing those paths would be cleaner than overwriting with nonsense.
substituteInPlace "$out"/lib/perl5/*/*/Config_heavy.pl \
--replace "${libcInc}" /no-such-path \
- --replace "${stdenv.cc.cc or "/no-such-path"}" /no-such-path \
+ --replace "${
+ if stdenv.cc.cc or null != null then stdenv.cc.cc else "/no-such-path"
+ }" /no-such-path \
--replace "$man" /no-such-path
''; # */
diff --git a/pkgs/development/libraries/libuv/default.nix b/pkgs/development/libraries/libuv/default.nix
index e039711e457..3c47a0453de 100644
--- a/pkgs/development/libraries/libuv/default.nix
+++ b/pkgs/development/libraries/libuv/default.nix
@@ -3,14 +3,14 @@
, ApplicationServices, CoreServices }:
stdenv.mkDerivation rec {
- version = "1.9.0";
+ version = "1.9.1";
name = "libuv-${version}";
src = fetchFromGitHub {
owner = "libuv";
repo = "libuv";
rev = "v${version}";
- sha256 = "0sq8c8n7xixn2xxp35crprvh35ry18i5mcxgwh12lydwv9ks0d4k";
+ sha256 = "1kc386gkkkymgz9diz1z4r8impcsmki5k88dsiasd6v9bfvq04cc";
};
buildInputs = [ automake autoconf libtool pkgconfig ]
diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix
index 0a0b71be391..5ddc7bf3ddb 100644
--- a/pkgs/development/libraries/mesa/default.nix
+++ b/pkgs/development/libraries/mesa/default.nix
@@ -45,6 +45,7 @@ stdenv.mkDerivation {
patches = [
./glx_ro_text_segm.patch # fix for grsecurity/PaX
+ ./symlink-drivers.patch
# TODO: revive ./dricore-gallium.patch when it gets ported (from Ubuntu),
# as it saved ~35 MB in $drivers; watch https://launchpad.net/ubuntu/+source/mesa/+changelog
] ++ optional stdenv.isLinux
diff --git a/pkgs/development/libraries/mesa/symlink-drivers.patch b/pkgs/development/libraries/mesa/symlink-drivers.patch
new file mode 100644
index 00000000000..6c800e5dfce
--- /dev/null
+++ b/pkgs/development/libraries/mesa/symlink-drivers.patch
@@ -0,0 +1,72 @@
+diff -ru -x '*~' mesa-11.1.4-orig/src/gallium/targets/dri/Makefile.am mesa-11.1.4/src/gallium/targets/dri/Makefile.am
+--- mesa-11.1.4-orig/src/gallium/targets/dri/Makefile.am 2016-05-09 14:20:52.000000000 +0200
++++ mesa-11.1.4/src/gallium/targets/dri/Makefile.am 2016-05-22 17:56:03.396185082 +0200
+@@ -126,14 +126,13 @@
+ done;
+ endif
+
+-# hardlink each megadriver instance, but don't actually have
+-# gallium_dri.so in the set of final installed files.
++# symlink each megadriver instance.
+ install-data-hook:
+ for i in $(TARGET_DRIVERS); do \
+- ln -f $(DESTDIR)$(dridir)/gallium_dri.so \
++ ln -sf $(DESTDIR)$(dridir)/gallium_dri.so \
+ $(DESTDIR)$(dridir)/$${i}_dri.so; \
+ done; \
+- $(RM) $(DESTDIR)$(dridir)/gallium_dri.*
++ $(RM) $(DESTDIR)$(dridir)/gallium_dri.la
+
+ uninstall-hook:
+ for i in $(TARGET_DRIVERS); do \
+diff -ru -x '*~' mesa-11.1.4-orig/src/gallium/targets/vdpau/Makefile.am mesa-11.1.4/src/gallium/targets/vdpau/Makefile.am
+--- mesa-11.1.4-orig/src/gallium/targets/vdpau/Makefile.am 2016-01-29 13:21:30.000000000 +0100
++++ mesa-11.1.4/src/gallium/targets/vdpau/Makefile.am 2016-05-22 20:54:12.722358242 +0200
+@@ -103,15 +103,14 @@
+ done;
+ endif
+
+-# hardlink each megadriver instance, but don't actually have
+-# libvdpau_gallium.so in the set of final installed files.
++# symlink each megadriver instance.
+ install-data-hook:
+ $(AM_V_GEN)dest_dir=$(DESTDIR)/$(vdpaudir); \
+ for i in $(TARGET_DRIVERS); do \
+ j=libvdpau_gallium.$(LIB_EXT); \
+ k=libvdpau_$${i}.$(LIB_EXT); \
+ l=$${k}.$(VDPAU_MAJOR).$(VDPAU_MINOR).0; \
+- ln -f $${dest_dir}/$${j}.$(VDPAU_MAJOR).$(VDPAU_MINOR).0 \
++ ln -sf $${dest_dir}/$${j}.$(VDPAU_MAJOR).$(VDPAU_MINOR).0 \
+ $${dest_dir}/$${l}; \
+ ln -sf $${l} \
+ $${dest_dir}/$${k}.$(VDPAU_MAJOR).$(VDPAU_MINOR); \
+@@ -120,7 +119,7 @@
+ ln -sf $${l} \
+ $${dest_dir}/$${k}; \
+ done; \
+- $(RM) $${dest_dir}/libvdpau_gallium.*
++ $(RM) $${dest_dir}/libvdpau_gallium.la
+
+ uninstall-hook:
+ for i in $(TARGET_DRIVERS); do \
+diff -ru -x '*~' mesa-11.1.4-orig/src/mesa/drivers/dri/Makefile.am mesa-11.1.4/src/mesa/drivers/dri/Makefile.am
+--- mesa-11.1.4-orig/src/mesa/drivers/dri/Makefile.am 2016-01-18 08:39:26.000000000 +0100
++++ mesa-11.1.4/src/mesa/drivers/dri/Makefile.am 2016-05-22 17:55:46.251244940 +0200
+@@ -86,14 +86,13 @@
+ done;
+ endif
+
+-# hardlink each megadriver instance, but don't actually have
+-# mesa_dri_drivers.so in the set of final installed files.
++# symink each megadriver instance.
+ install-data-hook:
+ for i in $(MEGADRIVERS); do \
+- ln -f $(DESTDIR)$(dridir)/mesa_dri_drivers.so \
++ ln -sf $(DESTDIR)$(dridir)/mesa_dri_drivers.so \
+ $(DESTDIR)$(dridir)/$$i; \
+ done;
+- $(RM) $(DESTDIR)$(dridir)/mesa_dri_drivers.*
++ $(RM) $(DESTDIR)$(dridir)/mesa_dri_drivers.la
+
+ uninstall-hook:
+ for i in $(MEGADRIVERS); do \
diff --git a/pkgs/development/libraries/pcl/default.nix b/pkgs/development/libraries/pcl/default.nix
index 908d1ea856f..b38f1e5711a 100644
--- a/pkgs/development/libraries/pcl/default.nix
+++ b/pkgs/development/libraries/pcl/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchzip, cmake, qhull, flann, boost, vtk, eigen, pkgconfig, qt4
-, libusb1, libpcap, libXt, libpng
+, libusb1, libpcap, libXt, libpng, Cocoa, AGL, cf-private
}:
stdenv.mkDerivation rec {
@@ -14,13 +14,22 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
buildInputs = [ cmake qhull flann boost eigen pkgconfig libusb1 libpcap
- libpng vtk qt4 libXt ];
+ libpng vtk qt4 libXt ]
+ ++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa AGL cf-private ];
+ cmakeFlags = stdenv.lib.optionals stdenv.isDarwin [
+ "-DCMAKE_OSX_SYSROOT=" "-DCMAKE_OSX_DEPLOYMENT_TARGET=" ];
+
+ preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
+ NIX_CFLAGS_COMPILE=$(echo "$NIX_CFLAGS_COMPILE" | sed "s,[[:space:]]*-F$NIX_STORE/[[:alnum:]]*-CF-osx-[[:digit:].]*/Library/Frameworks,,g")
+ sed -i 's,^\( target_link_libraries("''${LIB_NAME}" "-framework Cocoa")\),\1\n target_link_libraries("''${LIB_NAME}" "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"),' visualization/CMakeLists.txt
+ sed -i 's,^\(set(SUBSYS_DEPS common io kdtree geometry search)\),\1\nset(CMAKE_OSX_SYSROOT "")\nset(CMAKE_OSX_DEPLOYMENT_TARGET ""),' visualization/CMakeLists.txt
+ '';
meta = {
homepage = http://pointclouds.org/;
description = "Open project for 2D/3D image and point cloud processing";
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [viric];
- platforms = with stdenv.lib.platforms; linux;
+ platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}
diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix
index 6ab5a48951f..8cc876de3d1 100644
--- a/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix
+++ b/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix
@@ -87,7 +87,7 @@ stdenv.mkDerivation {
--replace "@mesa_lib@" "${mesa.out}"
substituteInPlace qtbase/mkspecs/common/linux.conf \
--replace "@mesa_lib@" "${mesa.out}" \
- --replace "@mesa_inc@" "${mesa.dev}"
+ --replace "@mesa_inc@" "${mesa.dev or mesa}"
'';
diff --git a/pkgs/development/libraries/tinyxml/2.6.2-cxx.patch b/pkgs/development/libraries/tinyxml/2.6.2-cxx.patch
new file mode 100644
index 00000000000..e55d0be43bc
--- /dev/null
+++ b/pkgs/development/libraries/tinyxml/2.6.2-cxx.patch
@@ -0,0 +1,17 @@
+diff -u a/Makefile b/Makefile
+--- a/Makefile 2011-05-14 22:24:57.000000000 -0400
++++ b/Makefile 2016-04-01 14:53:05.000000000 -0400
+@@ -19,9 +19,9 @@
+
+ #****************************************************************************
+
+-CC := gcc
+-CXX := g++
+-LD := g++
++CC ?= gcc
++CXX ?= g++
++LD ?= g++
+ AR := ar rc
+ RANLIB := ranlib
+
+Common subdirectories: a/docs and b/docs
diff --git a/pkgs/development/libraries/tinyxml/2.6.2.nix b/pkgs/development/libraries/tinyxml/2.6.2.nix
index 7f0a343eba2..231550cd557 100644
--- a/pkgs/development/libraries/tinyxml/2.6.2.nix
+++ b/pkgs/development/libraries/tinyxml/2.6.2.nix
@@ -2,6 +2,7 @@
let
version = "2.6.2";
+ SHLIB_EXT = if stdenv.isDarwin then "dylib" else "so";
in stdenv.mkDerivation {
name = "tinyxml-${version}";
@@ -16,7 +17,14 @@ in stdenv.mkDerivation {
# http://sourceforge.net/tracker/index.php?func=detail&aid=3031828&group_id=13559&atid=313559
./2.6.2-entity.patch
+
+ # Use CC, CXX, and LD from environment
+ ./2.6.2-cxx.patch
];
+ preConfigure = "export LD=${if stdenv.isDarwin then "clang++" else "g++"}";
+
+ NIX_CFLAGS_COMPILE =
+ stdenv.lib.optional stdenv.isDarwin "-mmacosx-version-min=10.9";
buildInputs = [ unzip ];
buildPhase = ''
@@ -28,9 +36,9 @@ in stdenv.mkDerivation {
make
# build the lib as a shared library
- g++ -Wall -O2 -shared -fpic tinyxml.cpp \
+ ''${CXX} -Wall -O2 -shared -fpic tinyxml.cpp \
tinyxmlerror.cpp tinyxmlparser.cpp \
- tinystr.cpp -o libtinyxml.so
+ tinystr.cpp -o libtinyxml.${SHLIB_EXT}
'';
doCheck = true;
@@ -47,7 +55,7 @@ in stdenv.mkDerivation {
mkdir -pv $out/lib/pkgconfig/
mkdir -pv $out/share/doc/tinyxml/
- cp -v libtinyxml.so $out/lib/
+ cp -v libtinyxml.${SHLIB_EXT} $out/lib/
cp -v *.h $out/include/
substituteInPlace tinyxml.pc --replace "@out@" "$out"
diff --git a/pkgs/development/libraries/wildmidi/default.nix b/pkgs/development/libraries/wildmidi/default.nix
index 4dec0555ae9..9d22833e1c0 100644
--- a/pkgs/development/libraries/wildmidi/default.nix
+++ b/pkgs/development/libraries/wildmidi/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, cmake, alsaLib, freepats }:
stdenv.mkDerivation rec {
- name = "wildmidi-0.3.8";
+ name = "wildmidi-0.3.9";
src = fetchurl {
url = "https://github.com/Mindwerks/wildmidi/archive/${name}.tar.gz";
- sha256 = "1z324wkmkf0lapfammviiyclhc7i8in2x2gvgc2r6sq69lcwbn7g";
+ sha256 = "1fbcsvzn8akvvy7vg6vmnikcc8gh405b4gp1r016bq7yginljwwp";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/development/perl-modules/maatkit/default.nix b/pkgs/development/perl-modules/maatkit/default.nix
index 2b412d518c5..e301bd1009f 100644
--- a/pkgs/development/perl-modules/maatkit/default.nix
+++ b/pkgs/development/perl-modules/maatkit/default.nix
@@ -8,6 +8,8 @@ buildPerlPackage rec {
sha256 = "1a7rxrddkrsfxb2wj01ha91ld0vapfkqcy8j9p08l76zz2l8p2v1";
};
+ outputs = [ "out" ];
+
buildInputs = [ DBDmysql ] ;
preConfigure = ''
diff --git a/pkgs/development/python-modules/pygame/default.nix b/pkgs/development/python-modules/pygame/default.nix
index 0928fa6ae7d..226b613a8b4 100644
--- a/pkgs/development/python-modules/pygame/default.nix
+++ b/pkgs/development/python-modules/pygame/default.nix
@@ -1,9 +1,10 @@
-{ stdenv, fetchurl, buildPythonPackage, pkgconfig, smpeg, libX11
+{ stdenv, lib, fetchurl, buildPythonPackage, python, smpeg, libX11
, SDL, SDL_image, SDL_mixer, SDL_ttf, libpng, libjpeg, portmidi, isPy3k,
}:
-buildPythonPackage {
- name = "pygame-1.9.1";
+buildPythonPackage rec {
+ name = "pygame-${version}";
+ version = "1.9.1";
src = fetchurl {
url = "http://www.pygame.org/ftp/pygame-1.9.1release.tar.gz";
@@ -11,11 +12,11 @@ buildPythonPackage {
};
buildInputs = [
- pkgconfig SDL SDL_image SDL_mixer SDL_ttf libpng libjpeg
+ SDL SDL_image SDL_mixer SDL_ttf libpng libjpeg
smpeg portmidi libX11
];
- # /nix/store/94kswjlwqnc0k2bnwgx7ckx0w2kqzaxj-stdenv/setup: line 73: python: command not found
+ # http://ubuntuforums.org/showthread.php?t=1960262
disabled = isPy3k;
# Tests fail because of no audio device and display.
@@ -23,18 +24,26 @@ buildPythonPackage {
patches = [ ./pygame-v4l.patch ];
- preConfigure = stdenv.lib.concatMapStrings (dep: ''
+ preConfigure = ''
sed \
- -e "/origincdirs =/a'${dep.dev or dep.out}/include'," \
- -e "/origlibdirs =/aoriglibdirs += '${dep.lib or dep.out}/lib'," \
+ -e "s/^origincdirs = .*/origincdirs = []/" \
+ -e "s/^origlibdirs = .*/origlibdirs = []/" \
+ -e "/\/include\/smpeg/d" \
-i config_unix.py
- '') [ SDL_image SDL_mixer SDL_ttf libpng libjpeg portmidi libX11 ] + ''
- LOCALBASE=/ python config.py
+ ${lib.concatMapStrings (dep: ''
+ sed \
+ -e "/^origincdirs =/aorigincdirs += ['${lib.getDev dep}/include']" \
+ -e "/^origlibdirs =/aoriglibdirs += ['${lib.getLib dep}/lib']" \
+ -i config_unix.py
+ '') buildInputs
+ }
+ LOCALBASE=/ ${python.interpreter} config.py
'';
- meta = {
+ meta = with stdenv.lib; {
description = "Python library for games";
homepage = "http://www.pygame.org/";
- license = stdenv.lib.licenses.lgpl21Plus;
+ license = licenses.lgpl21Plus;
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/development/python-modules/pygame/git.nix b/pkgs/development/python-modules/pygame/git.nix
new file mode 100644
index 00000000000..7f815454713
--- /dev/null
+++ b/pkgs/development/python-modules/pygame/git.nix
@@ -0,0 +1,45 @@
+{ stdenv, lib, fetchFromBitbucket, buildPythonPackage, python, smpeg, libX11
+, SDL, SDL_image, SDL_mixer, SDL_ttf, libpng, libjpeg, portmidi
+}:
+
+buildPythonPackage rec {
+ name = "pygame-${version}";
+ version = "2016-05-17";
+
+ src = fetchFromBitbucket {
+ owner = "pygame";
+ repo = "pygame";
+ rev = "575c7a74d85a37db7c645421c02cf0b6b78a889f";
+ sha256 = "1i5xqmw93kfidcji2wacgkm5y4mcnbksy8iimih0729k19rbhznc";
+ };
+
+ buildInputs = [
+ SDL SDL_image SDL_mixer SDL_ttf libpng libjpeg
+ smpeg portmidi libX11
+ ];
+
+ # Tests fail because of no audio device and display.
+ doCheck = false;
+
+ preConfigure = ''
+ sed \
+ -e "s/^origincdirs = .*/origincdirs = []/" \
+ -e "s/^origlibdirs = .*/origlibdirs = []/" \
+ -i config_unix.py
+ ${lib.concatMapStrings (dep: ''
+ sed \
+ -e "/^origincdirs =/aorigincdirs += ['${lib.getDev dep}/include']" \
+ -e "/^origlibdirs =/aoriglibdirs += ['${lib.getLib dep}/lib']" \
+ -i config_unix.py
+ '') buildInputs
+ }
+ LOCALBASE=/ ${python.interpreter} config.py
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Python library for games";
+ homepage = "http://www.pygame.org/";
+ license = licenses.lgpl21Plus;
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/development/tools/build-managers/dub/default.nix b/pkgs/development/tools/build-managers/dub/default.nix
index 5394829a830..3693a27ac23 100644
--- a/pkgs/development/tools/build-managers/dub/default.nix
+++ b/pkgs/development/tools/build-managers/dub/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchFromGitHub, curl, dmd, gcc }:
-let version = "0.9.24"; in
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
name = "dub-${version}";
+ version = "0.9.25";
src = fetchFromGitHub {
- sha256 = "1j2cs2mvaj6bjjicabq6lh97nx0v4b2k6pj4cmywki7hf3i1p8yy";
+ sha256 = "0cb4kx72fvk6vfqkk0mrp6fvv512xhw03dq2dn9lng0daydvdcim";
rev = "v${version}";
repo = "dub";
owner = "D-Programming-Language";
@@ -15,16 +15,17 @@ stdenv.mkDerivation {
propagatedBuildInputs = [ gcc dmd ];
buildPhase = ''
- # Avoid that the version file is overwritten
- substituteInPlace build.sh \
- --replace source/dub/version_.d /dev/null
- ./build.sh
+ # Avoid that the version file is overwritten
+ substituteInPlace build.sh \
+ --replace source/dub/version_.d /dev/null
+ patchShebangs ./build.sh
+ ./build.sh
'';
installPhase = ''
- mkdir $out
- mkdir $out/bin
- cp bin/dub $out/bin
+ mkdir $out
+ mkdir $out/bin
+ cp bin/dub $out/bin
'';
meta = with stdenv.lib; {
diff --git a/pkgs/development/tools/misc/editorconfig-core-c/default.nix b/pkgs/development/tools/misc/editorconfig-core-c/default.nix
index 83ff85298f4..8b07f554c6a 100644
--- a/pkgs/development/tools/misc/editorconfig-core-c/default.nix
+++ b/pkgs/development/tools/misc/editorconfig-core-c/default.nix
@@ -6,9 +6,9 @@ stdenv.mkDerivation rec {
src = fetchgit {
url = "https://github.com/editorconfig/editorconfig-core-c.git";
- rev = "99d09270c58b817ea218979d513a90099ade6277";
+ rev = "d1c2c881158dfb9faa4498a0b19593dcd105d6b8";
fetchSubmodules = true;
- sha256 = "0s35dzf2180205xq2xpfmmlfw112j3h87swnisza85qwwz8bf2k9";
+ sha256 = "0awpb63ci85kal3pnlj2b54bay8igj1rbc13d8gqkvidlb51nnx4";
inherit name;
};
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
'';
downloadPage = "https://github.com/editorconfig/editorconfig-core-c";
license = with licenses; [ bsd2 bsd3 ];
- version = "0.12.0";
+ version = "0.12.1";
maintainers = [ maintainers.dochang ];
};
diff --git a/pkgs/development/tools/misc/uncrustify/default.nix b/pkgs/development/tools/misc/uncrustify/default.nix
index 70aedbb48d2..a4c61a58b89 100644
--- a/pkgs/development/tools/misc/uncrustify/default.nix
+++ b/pkgs/development/tools/misc/uncrustify/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "${product}-${version}";
product = "uncrustify";
- version = "0.61";
+ version = "0.63";
src = fetchurl {
url = "mirror://sourceforge/uncrustify/${product}-${version}.tar.gz";
- sha256 = "1df0e5a2716e256f0a4993db12f23d10195b3030326fdf2e07f8e6421e172df9";
+ sha256 = "1qravjzmips3m7asbsd0qllmprrl1rshjlmnfq68w84d38sb3yyz";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/tools/ocaml/cppo/default.nix b/pkgs/development/tools/ocaml/cppo/default.nix
index 461fda45d4c..38b97c006cd 100644
--- a/pkgs/development/tools/ocaml/cppo/default.nix
+++ b/pkgs/development/tools/ocaml/cppo/default.nix
@@ -1,7 +1,7 @@
-{stdenv, fetchurl, ocaml, findlib}:
+{ stdenv, fetchFromGitHub, ocaml, findlib }:
let
pname = "cppo";
- version = "1.1.2";
+ version = "1.3.2";
webpage = "http://mjambon.com/${pname}.html";
in
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "3.12";
@@ -9,9 +9,11 @@ stdenv.mkDerivation rec {
name = "${pname}-${version}";
- src = fetchurl {
- url = "http://mjambon.com/releases/${pname}/${name}.tar.gz";
- sha256 = "1pfzch4ys5gjac2lrkqq0gzmm5plkq2jl17b2m3n06kmwashqplp";
+ src = fetchFromGitHub {
+ owner = "mjambon";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "06j0zr78f04ahxi2459vjn61z25hkvs4dfj76200ydg3g6ifb3k1";
};
buildInputs = [ ocaml findlib ];
diff --git a/pkgs/development/tools/sass/Gemfile b/pkgs/development/tools/sass/Gemfile
new file mode 100644
index 00000000000..e46ea120f72
--- /dev/null
+++ b/pkgs/development/tools/sass/Gemfile
@@ -0,0 +1,2 @@
+source 'https://rubygems.org'
+gem 'sass'
diff --git a/pkgs/development/tools/sass/Gemfile.lock b/pkgs/development/tools/sass/Gemfile.lock
new file mode 100644
index 00000000000..82dcddb9ece
--- /dev/null
+++ b/pkgs/development/tools/sass/Gemfile.lock
@@ -0,0 +1,13 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ sass (3.4.22)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ sass
+
+BUNDLED WITH
+ 1.11.2
diff --git a/pkgs/development/tools/sass/default.nix b/pkgs/development/tools/sass/default.nix
new file mode 100644
index 00000000000..a291ca2de5d
--- /dev/null
+++ b/pkgs/development/tools/sass/default.nix
@@ -0,0 +1,18 @@
+{ lib, bundlerEnv, ruby }:
+
+bundlerEnv {
+ name = "sass-3.4.22";
+
+ inherit ruby;
+ gemfile = ./Gemfile;
+ lockfile = ./Gemfile.lock;
+ gemset = ./gemset.nix;
+
+ meta = with lib; {
+ description = "Tools and Ruby libraries for the CSS3 extension languages: Sass and SCSS";
+ homepage = http://sass-lang.com/;
+ license = licenses.mit;
+ maintainers = [ maintainers.romildo ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/tools/sass/gemset.nix b/pkgs/development/tools/sass/gemset.nix
new file mode 100644
index 00000000000..31e4e6ab6d3
--- /dev/null
+++ b/pkgs/development/tools/sass/gemset.nix
@@ -0,0 +1,10 @@
+{
+ sass = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0dkj6v26fkg1g0majqswwmhxva7cd6p3psrhdlx93qal72dssywy";
+ type = "gem";
+ };
+ version = "3.4.22";
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/web/nodejs/v4.nix b/pkgs/development/web/nodejs/v4.nix
index 4332dca2dae..f8b8830a6fc 100644
--- a/pkgs/development/web/nodejs/v4.nix
+++ b/pkgs/development/web/nodejs/v4.nix
@@ -4,9 +4,9 @@
}@args:
import ./nodejs.nix (args // rec {
- version = "4.3.1";
+ version = "4.4.4";
src = fetchurl {
- url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz";
- sha256 = "0wzf5sirbph5kaik3pm9i2dxbjwqh5qlnqn71azrsv0vhs7dbqk1";
+ url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
+ sha256 = "055i4wcc5sfqv7ksdxwbxpy4v1qc16lkzgbyhx46cnhl072fv71c";
};
})
diff --git a/pkgs/development/web/nodejs/v5.nix b/pkgs/development/web/nodejs/v5.nix
index 02a7ba3ef4b..12d0dca4503 100644
--- a/pkgs/development/web/nodejs/v5.nix
+++ b/pkgs/development/web/nodejs/v5.nix
@@ -4,9 +4,9 @@
}@args:
import ./nodejs.nix (args // rec {
- version = "5.11.0";
+ version = "5.11.1";
src = fetchurl {
- url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz";
- sha256 = "14ayv5rgagc6lj7fil0bdbzwj2qxj5picw802rfmmpj9kqdb0hgg";
+ url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
+ sha256 = "07v60mhswj77m7516zakj3p1py7ixa5jbgj0m7zlr9vygrrc66zi";
};
})
diff --git a/pkgs/development/web/nodejs/v6.nix b/pkgs/development/web/nodejs/v6.nix
index 7ce41e3fcdf..9ed1db66dde 100644
--- a/pkgs/development/web/nodejs/v6.nix
+++ b/pkgs/development/web/nodejs/v6.nix
@@ -6,7 +6,7 @@
import ./nodejs.nix (args // rec {
version = "6.2.0";
src = fetchurl {
- url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.gz";
- sha256 = "1fcldsnkk6px5fms405j9z2yv6mmscin5x7sma8bdavqgn283zgw";
+ url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz";
+ sha256 = "14p4ah9gsgifj25g2akp7kyqhnqvq726n74h4rfj7wnidxhgwcw6";
};
})
diff --git a/pkgs/games/sgt-puzzles/default.nix b/pkgs/games/sgt-puzzles/default.nix
index ce0bc555014..0500a456269 100644
--- a/pkgs/games/sgt-puzzles/default.nix
+++ b/pkgs/games/sgt-puzzles/default.nix
@@ -18,6 +18,15 @@ stdenv.mkDerivation {
cp gamedesc.txt LICENCE README "$out/share/doc/sgtpuzzles"
cp LICENCE "$out/share/doc/sgtpuzzles/LICENSE"
'';
+ # SGT Puzzles use generic names like net, map, etc.
+ # Create symlinks with sgt-puzzle- prefix for possibility of
+ # disambiguation
+ postInstall = ''
+ (
+ cd "$out"/bin ;
+ for i in *; do ln -s "$i" "sgt-puzzle-$i"; done
+ )
+ '';
preConfigure = ''
perl mkfiles.pl
export NIX_LDFLAGS="$NIX_LDFLAGS -lX11"
diff --git a/pkgs/misc/mnemonicode/default.nix b/pkgs/misc/mnemonicode/default.nix
new file mode 100644
index 00000000000..d977d822351
--- /dev/null
+++ b/pkgs/misc/mnemonicode/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, lib, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+ name = "mnemonicode-${version}";
+ version = "2015-11-30";
+ src = fetchFromGitHub {
+ owner = "singpolyma";
+ repo = "mnemonicode";
+ rev = "1687fabdf48acf68d4186f219bc20bffe02e8ee0";
+ sha256 = "0kp1jhhqfwfiqg9kx0mbyr4qh4yc4zg4szqk5fbf809nx2pvprm5";
+ };
+ installPhase = ''
+ mkdir -p $out/bin
+ cp mnencode $out/bin
+ cp mndecode $out/bin
+ '';
+ meta = with lib; {
+ description = ''
+ Routines which implement a method for encoding binary data into a sequence
+ of words which can be spoken over the phone, for example, and converted
+ back to data on the other side.
+ '';
+ license = licenses.mit;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.cstrahan ];
+ };
+}
diff --git a/pkgs/misc/themes/gtk3/numix-gtk-theme/default.nix b/pkgs/misc/themes/gtk3/numix-gtk-theme/default.nix
deleted file mode 100644
index 555e1ef508c..00000000000
--- a/pkgs/misc/themes/gtk3/numix-gtk-theme/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ stdenv, fetchurl }:
-
-stdenv.mkDerivation rec {
- version = "2.5.1";
- name = "numix-gtk-theme-${version}";
-
- src = fetchurl {
- url = "https://github.com/numixproject/Numix/archive/v${version}.tar.gz";
- sha256 = "0y6c4xr2n9sygxhgviwd97l02n17n53bkpfp62srkm05cq0jy87k";
- };
-
- dontBuild = true;
-
- installPhase = ''
- install -dm 755 $out/share/themes/Numix
- cp -dr --no-preserve='ownership' {LICENSE,CREDITS,index.theme,gtk-2.0,gtk-3.0,metacity-1,openbox-3,unity,xfce-notify-4.0,xfwm4} $out/share/themes/Numix/
- '';
-
- meta = {
- description = "Numix GTK theme";
- homepage = https://numixproject.org;
- license = stdenv.lib.licenses.gpl3;
- platforms = stdenv.lib.platforms.all;
- };
-}
diff --git a/pkgs/misc/themes/gtk3/paper-gtk-theme/default.nix b/pkgs/misc/themes/gtk3/paper-gtk-theme/default.nix
deleted file mode 100644
index c7cf3a871b5..00000000000
--- a/pkgs/misc/themes/gtk3/paper-gtk-theme/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ stdenv, fetchFromGitHub, gtk }:
-
-stdenv.mkDerivation rec {
- version = "6a5f14cfe697b0a829456a1fd560acdcddc6043f";
- name = "paper-gtk-theme-${version}";
-
- src = fetchFromGitHub {
- owner = "snwh";
- repo = "paper-gtk-theme";
- sha256 = "0kyn3a6sq0z22vds6szl630jv20pjskjbdg0wc8abxzwg0vwxc5m";
- rev = version;
- };
-
- dontBuild = true;
- installPhase = ''
- mkdir -p $out/share/themes/Paper/
- cp -r ./Paper/ $out/share/themes/
- '';
-
- preferLocalBuild = true;
-
- meta = with stdenv.lib; {
- description = "A modern desktop theme suite featuring a mostly flat with a minimal use of shadows for depth";
- homepage = "http://snwh.org/paper/";
- license = licenses.gpl3;
- maintainers = [ maintainers.simonvandel ];
- platforms = platforms.linux;
- };
-}
diff --git a/pkgs/misc/themes/numix-gtk-theme/default.nix b/pkgs/misc/themes/numix-gtk-theme/default.nix
new file mode 100644
index 00000000000..f57c1fba1fc
--- /dev/null
+++ b/pkgs/misc/themes/numix-gtk-theme/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub, sass, glib, libxml2, gdk_pixbuf
+, gtk-engine-murrine
+}:
+
+stdenv.mkDerivation rec {
+ version = "2016-05-19";
+ name = "numix-gtk-theme-${version}";
+
+ src = fetchFromGitHub {
+ repo = "numix-gtk-theme";
+ owner = "numixproject";
+ rev = "266945047ad8c148d36d0d1f00b39730b84482a9";
+ sha256 = "108qjqwn9shqjkbadyw79y1wbq5ndv30x7xw5wjmbcss5jikr3v1";
+ };
+
+ nativeBuildInputs = [ sass glib libxml2 gdk_pixbuf ];
+
+ buildInputs = [ gtk-engine-murrine ];
+
+ installPhase = ''
+ make install DESTDIR="$out"
+ '';
+
+ meta = {
+ description = "Modern flat theme with a combination of light and dark elements (GNOME, Unity, Xfce and Openbox)";
+ homepage = https://numixproject.org;
+ license = stdenv.lib.licenses.gpl3Plus;
+ platforms = stdenv.lib.platforms.all;
+ maintainers = [ stdenv.lib.maintainers.romildo ];
+ };
+}
diff --git a/pkgs/misc/themes/paper-gtk-theme/default.nix b/pkgs/misc/themes/paper-gtk-theme/default.nix
new file mode 100644
index 00000000000..ccff20dd929
--- /dev/null
+++ b/pkgs/misc/themes/paper-gtk-theme/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, gtk_engines }:
+
+stdenv.mkDerivation rec {
+ version = "2016-05-18";
+ name = "paper-gtk-theme-${version}";
+
+ src = fetchFromGitHub {
+ owner = "snwh";
+ repo = "paper-gtk-theme";
+ rev = "5113d58dc64de70fcc75ad2d6d05c8c8dae2de7f";
+ sha256 = "1j9l50iyvadpqsq5v14zgml24jgraajr5kl9ji0ar62nlak2bi8s";
+ };
+
+ nativeBuildInputs = [ autoreconfHook ];
+
+ buildInputs = [ gtk_engines ];
+
+ installPhase = ''
+ make install DESTDIR="$out"
+ '';
+
+ preferLocalBuild = true;
+
+ meta = with stdenv.lib; {
+ description = "A modern desktop theme suite featuring a mostly flat with a minimal use of shadows for depth";
+ homepage = "http://snwh.org/paper";
+ license = licenses.gpl3;
+ maintainers = [ maintainers.simonvandel maintainers.romildo ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix
index 6ee520b8d15..82a8e9162b2 100644
--- a/pkgs/misc/vim-plugins/default.nix
+++ b/pkgs/misc/vim-plugins/default.nix
@@ -111,7 +111,7 @@ rec {
src = fetchgit {
url = "git://github.com/godlygeek/csapprox";
rev = "7981dac51d8b6776985aa08cb7b5ee98ea7f2ddd";
- sha256 = "17rqhf3gz2al597sy9smk10a7p1bh648659jkl867ay7g7mlgjwc";
+ sha256 = "08g4x6nnd6hkgm2daa5ihhz75pcdx3jzzv8rfjls80qajlhx5rf6";
};
dependencies = [];
@@ -122,7 +122,7 @@ rec {
src = fetchgit {
url = "git://github.com/chrisbra/CheckAttach";
rev = "a1d86be7e69b25b41ce1a7fe2d2844330f783b68";
- sha256 = "07rcp8phc0gazls0cassl64gvlxkp0hcc0c32adjw4jsdy11r4mq";
+ sha256 = "0scshz5vc5j2lhjj5is4y392xarwsdh4z3y7kyibq3d7fmszksgn";
};
dependencies = [];
@@ -133,7 +133,7 @@ rec {
src = fetchgit {
url = "git://github.com/mattn/gist-vim";
rev = "88c331e2e07765090112a396e5e119b39b5aa754";
- sha256 = "1igryyi85bk1pk0jmx4l01skgmjyg1kg1p3ylv0j22d5nibf79qd";
+ sha256 = "0z7qnkgv8ryyiwikz6v6vpqypr2gh2hih27cil02rs4ci4041w74";
};
dependencies = [];
@@ -166,7 +166,7 @@ rec {
src = fetchgit {
url = "git://github.com/ervandew/supertab";
rev = "66511772a430a5eaad7f7d03dbb02e8f33c4a641";
- sha256 = "065l7vin3gdk4lzcavwl7k850kz93lqhazxn80p2d8rwkx732jgx";
+ sha256 = "1kxxgplsc40wyl7yj3dpcjjgysd41cd32ppcpnj5knphpjw7abp4";
};
dependencies = [];
@@ -177,7 +177,7 @@ rec {
src = fetchgit {
url = "git://github.com/scrooloose/syntastic";
rev = "c2c6a075113adbfcc4f1ad5b1c0200a0d35ceeb6";
- sha256 = "1b6wc3705n7pj93cf6cv2sazihqw11zq53a7slr646lcdx8r6d7f";
+ sha256 = "1fkjq43rlacdpb5h6qvhpc4dpm0lrfzpa5kjv8m0irk4i635mzwg";
};
dependencies = [];
@@ -188,7 +188,7 @@ rec {
src = fetchgit {
url = "git://github.com/godlygeek/tabular";
rev = "00e1e7fcdbc6d753e0bc8043e0d2546fa81bf367";
- sha256 = "0d4n6vggrxvd0jab7yp8wz56dq79g4gjr9fgxfv0q31d3dx1j6js";
+ sha256 = "185jpisk9hamcwb6aiavdzjdbbigzdra8f4mgs98r9cm9j448xkz";
};
dependencies = [];
@@ -199,7 +199,7 @@ rec {
src = fetchgit {
url = "git://github.com/majutsushi/tagbar";
rev = "7b36c46d17d57db34fdb0adac9ba6382d0bb5e66";
- sha256 = "1iqk7y2ckkmzq22jmiyrrxhnzcy8r3kdizwf65l1qbbpfbkp6rrl";
+ sha256 = "10n1c55r2arj89man01hq9dlp2lwya9gma2jh8lhhy8p9zfl95w6";
};
dependencies = [];
@@ -210,7 +210,7 @@ rec {
src = fetchgit {
url = "git://github.com/scrooloose/nerdcommenter";
rev = "1f4bfd59920c101a30a74a07b824608a6e65f3fe";
- sha256 = "0gdqmwsyk5ly96d0dp4j7pa0kp6qcl04nzxckh8kxjsbqnphmwaf";
+ sha256 = "1xy7bzngz41vkpf5zvk07a5kypxqmw9g1a89ji8q5sbc4pka0y8j";
};
dependencies = [];
@@ -221,18 +221,18 @@ rec {
src = fetchgit {
url = "git://github.com/scrooloose/nerdtree";
rev = "15445be5fb2559829ac7a1f05af5d713586e8ec9";
- sha256 = "0lpna2w0s85hagx6dpqanicrllmahjnmd0df4cndk0n5nih36x5k";
+ sha256 = "1x85k2h2qm1z67ywg0867w483w1rb7zmq9r2rkjj2kkk5wi6hfvq";
};
dependencies = [];
};
UltiSnips = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "UltiSnips-2016-05-08";
+ name = "UltiSnips-2016-05-16";
src = fetchgit {
url = "git://github.com/SirVer/ultisnips";
- rev = "b5edea2e998ae6c62517c7ed3e4c57b652537141";
- sha256 = "03ib1vq5rsj8xsakvdwdwgcwivyr8byx2z3s5rnq0rnwjlnpmqpn";
+ rev = "1c6b4f75a006c4411d01a1234cabda3eb4aded1a";
+ sha256 = "0m9sfq9d9qvrx5valg0xz9bi0y2zi3790rg1qlnin4h1gbj5axjb";
};
dependencies = [];
@@ -243,7 +243,7 @@ rec {
src = fetchgit {
url = "git://github.com/vimoutliner/vimoutliner";
rev = "cb41cfd6d636e1243e7e9c46b35fc5cb50588069";
- sha256 = "03w5y57329lnv2rxz0wvnfd1qv6d36zsqgwwvm2j8fvryhs7xbvg";
+ sha256 = "16szrm282l608i1v3z1vfnqrnk5x4gfljvvxqaszzm4qgdg90qg7";
};
dependencies = [];
@@ -254,7 +254,7 @@ rec {
src = fetchgit {
url = "git://github.com/mattn/webapi-vim";
rev = "ca89bd5867e76b154d4eca325b5a9ad6509fccc5";
- sha256 = "14gs351xm474ak4lxava38wrbwd5s26rca387slknncj5x404i65";
+ sha256 = "138rplbmvxicxjkkbvskck3b91rill53y22yrnnd9rj7zh9hj0zm";
};
dependencies = [];
@@ -267,6 +267,7 @@ rec {
name = "yankring_190.zip";
sha256 = "0nnxpsfjp2p9jvs3y5ynnd5s56snz9927zdp9bgmay2jgxfmp0si";
};
+ sourceRoot = ".";
buildInputs = [ unzip ];
dependencies = [];
meta = {
@@ -281,7 +282,7 @@ rec {
src = fetchgit {
url = "git://github.com/tpope/vim-commentary";
rev = "73e0d9a9d1f51b6cc9dc965f62669194ae851cb1";
- sha256 = "1cyghdlhyyzl366l8r7a2m00pfnga98n6s6a1z00y4rmnnxbk1kk";
+ sha256 = "1z409hpdk22v2ccx2y3sgcjf4fmnq7pyjfnk72srpqydfivxsl13";
};
dependencies = [];
@@ -314,7 +315,7 @@ rec {
src = fetchgit {
url = "git://github.com/int3/vim-extradite";
rev = "52326f6d333cdbb9e9c6d6772af87f4f39c00526";
- sha256 = "1wfdw6g16nqwdalq7m7ncnxhzyjcl5c8nsbsnsnr5bgsfgp49xwi";
+ sha256 = "0c89i0spvdm9vi65q15qcmsfmwa9rds2wmaq1kf6s7q7ywvs6w8i";
};
dependencies = [];
@@ -325,7 +326,7 @@ rec {
src = fetchgit {
url = "git://github.com/tpope/vim-fugitive";
rev = "3439f999b138254e4bb56187fc91f91f545b4b12";
- sha256 = "0p6vzfyhy7yvzrfmzyj0f1ccad3fqb3nd86phbl4hwnj8q00qvgw";
+ sha256 = "0b617wljhcbz6w789j72lp4riplcb6m3b2h8x84awp2rls6k130b";
};
dependencies = [];
@@ -336,7 +337,7 @@ rec {
src = fetchgit {
url = "git://github.com/eagletmt/ghcmod-vim";
rev = "815616e8b7d64677d6092e95bc6a3e83d2e035d4";
- sha256 = "1s0wxccmxi0w7ywhwyxggv5n8lcjgh68rhbpp2zrv5n5sg0das73";
+ sha256 = "00pl4zimbhcfpjg326qkjxr4s4d21kzl4j617382rvqbingrm8is";
};
dependencies = [];
@@ -347,7 +348,7 @@ rec {
src = fetchgit {
url = "git://github.com/Chiel92/vim-autoformat";
rev = "aaf19a31a9fcc53c5158710b69f17fe5ce137698";
- sha256 = "0sps5wzva07g0bc3qgr4l6bh90gl3mrx5913g8q2igvzsfp7g9m3";
+ sha256 = "0bvnxmvvmzdwl0qnclc457k6ccwxx9jjfbxzjvnr6ml8l4pdh8ff";
};
dependencies = [];
@@ -358,18 +359,18 @@ rec {
src = fetchgit {
url = "git://github.com/LnL7/vim-nix";
rev = "f0b7bd4bce5ed0f12fb4d26115c84fb3edcd1e12";
- sha256 = "0r3nffv2yv6vhzhkqx97diqwbcfqvc4j20nrcbmqhaf1bd6xvnsj";
+ sha256 = "0x12a191xafn7918xa8r4sjiw79005lcr0yv5kjc4p1izwddfgdv";
};
dependencies = [];
};
deoplete-nvim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "deoplete-nvim-2016-05-15";
+ name = "deoplete-nvim-2016-05-17";
src = fetchgit {
url = "git://github.com/Shougo/deoplete.nvim";
- rev = "22b6244d72aa4d4e015191a88120eceda1064df0";
- sha256 = "1nc6wn3ha9r80p0bpjm05afqddaa5p94cm0a9xfpm6an43g7jxs1";
+ rev = "0d69b3c2783bf5712b7d7dbdd35a2fc7617ff255";
+ sha256 = "0yvlrqxhl75aq4zfdiw2j3qfcvqf057371lw90ahl64hx7srmx0h";
};
dependencies = [];
@@ -386,23 +387,34 @@ rec {
};
+ vim-closetag = buildVimPluginFrom2Nix { # created by nix#NixDerivation
+ name = "vim-closetag-2016-04-21";
+ src = fetchgit {
+ url = "git://github.com/alvan/vim-closetag";
+ rev = "26e41a5b0c3752d5300506a49120d9dff19d8323";
+ sha256 = "0c8x25hb912jmhf5jpfll08937wr2yls28i9divldm9jkmxvcx2k";
+ };
+ dependencies = [];
+
+ };
+
vim-css-color = buildVimPluginFrom2Nix { # created by nix#NixDerivation
name = "vim-css-color-2016-04-14";
src = fetchgit {
url = "git://github.com/ap/vim-css-color";
rev = "4421dbac36bedcdd4fc345fd95785cfed518847c";
- sha256 = "11f356rciyxxvdlcijiq5rz2w8vmbcczq32r1fgspaig4pfa933p";
+ sha256 = "0z4d9q7irid4wianh94wqc2nr8hx54pci0p87ibhkbi7ibpl1qmp";
};
dependencies = [];
};
neomake = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "neomake-2016-05-15";
+ name = "neomake-2016-05-16";
src = fetchgit {
url = "git://github.com/benekastah/neomake";
- rev = "10689403d15879859715d7ef42d854c35615854b";
- sha256 = "1fbflq7851x3vqxp2jn0gp1x2cigb9llv3gzhj02mkqc6imhqkcp";
+ rev = "1b37b694b54d86795262e47eddd4995590fea0af";
+ sha256 = "1i01i5hdgy0zhnjya1xvp8qv6x5hf7m1w8rkrxnvm15cdgb4qa3j";
};
dependencies = [];
@@ -424,18 +436,18 @@ rec {
src = fetchgit {
url = "git://github.com/christoomey/vim-tmux-navigator";
rev = "e13914d89e9413cfa449f0c3daff18691356f2d1";
- sha256 = "17cdjj9r13hm5iwnghnfp1bwvz619dv4xg5014962pgkwh9kzdz2";
+ sha256 = "1hs61lgkf4bsy8891zqklh9jfzkwmm7r0lmr228k5wn97778bc83";
};
dependencies = [];
};
spacevim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "spacevim-2016-05-16";
+ name = "spacevim-2016-05-18";
src = fetchgit {
url = "git://github.com/ctjhoa/spacevim";
- rev = "c5d03538a8b2f81f2bdb7ca35e589a6a61806ae2";
- sha256 = "0r8jsygm30x8v31lm8al1qr6bh2wvnd9bxj6n8bxv4f87jl8dd2s";
+ rev = "e9c299059967610e096bf7436b4cef0df7cad90b";
+ sha256 = "00havlzm5ggxfimjh1ixjsn40jqgc5a8h6bl65b7x7ffalyfp7f1";
};
dependencies = [];
@@ -446,7 +458,7 @@ rec {
src = fetchgit {
url = "git://github.com/ctrlpvim/ctrlp.vim";
rev = "28fce0fb860fe8df0915da1de1fb6e90d6ab2edc";
- sha256 = "1xyxr7m0y2bwiqrb9sj0cjfdc5x474ajqg3bzv4cjv289gvql2qh";
+ sha256 = "1amxly825vdp7s1znnzz7ysjks26j37lhpm8hvgfxpxks2clyhhs";
};
dependencies = [];
@@ -468,7 +480,7 @@ rec {
src = fetchgit {
url = "git://github.com/eagletmt/neco-ghc";
rev = "b91b30f145d4daaf7e50d083e377bd9fbfdc670b";
- sha256 = "0znz8ym32k2y0ymdr070a9kx35mlalqfv9qlfz252ny348lwkgb8";
+ sha256 = "1fnxqqp4p7kxzs7svia33wikrzyav41qlncjpmbz6ss8jb9bk18b";
};
dependencies = [];
@@ -497,11 +509,11 @@ rec {
};
vim-go = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-go-2016-05-15";
+ name = "vim-go-2016-05-19";
src = fetchgit {
url = "git://github.com/fatih/vim-go";
- rev = "48cc65dfbd3172b989f82c8b67ceb6d88db3c522";
- sha256 = "1zw6jsyzhpl46f37dwslvhg74djl9ngi3h2rzrpgzscpm5wa6h38";
+ rev = "d54819ddc1fe6f7a71071f17108dae080aacdd08";
+ sha256 = "1rj3cd2f6mkpl1cv9zb8ihw2fbjp59qjfvnqy3xf969n73lgv0dv";
};
dependencies = [];
@@ -512,7 +524,7 @@ rec {
src = fetchgit {
url = "git://github.com/flazz/vim-colorschemes";
rev = "189f5182bb70fd35d0f56fee451c3f22a2a80135";
- sha256 = "0wv12f6i07md9c53ygbmyh14zghsr7w9ylkbrfpdjm9z32b0fpwf";
+ sha256 = "1j3r99av9rzdrp8w0c86n0r4kgiv8xry5xdghc1871kvz77sq5d4";
};
dependencies = [];
@@ -523,18 +535,18 @@ rec {
src = fetchgit {
url = "git://github.com/google/vim-jsonnet";
rev = "9cde81ff3f1afb64f8e6b51e8ebba25b074e26f8";
- sha256 = "0g1xbx8hw03dxpdhdhy4h355lwhfay15294c1i1i7lq3xnb8y6n8";
+ sha256 = "156lbh1xgw3vrgbdfax3mhyfdm2r6r0ak42bs001ykpqmn6dxbrx";
};
dependencies = [];
};
vim-leader-guide = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-leader-guide-2016-05-09";
+ name = "vim-leader-guide-2016-05-17";
src = fetchgit {
url = "git://github.com/hecal3/vim-leader-guide";
- rev = "871f36a1001dd697d679a64a9d58da05ca3f90b8";
- sha256 = "0dflv8nmpxr33q0h0cl8z9ijnbsa895agjbmisz7kq54anwwz763";
+ rev = "333bd74c6f6ad18d653061f469342f9a37664256";
+ sha256 = "07y4rq9d45vak5gm0hm1aazsh8r0k631aa9d0q9v9iz9k3v7irgw";
};
dependencies = [];
@@ -552,22 +564,22 @@ rec {
};
calendar-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "calendar-vim-2016-05-09";
+ name = "calendar-vim-2016-05-19";
src = fetchgit {
url = "git://github.com/itchyny/calendar.vim";
- rev = "4820ac93f9e8bb0c06c6b8abc1059048f17d1868";
- sha256 = "0zgj73z5c13zgrs3asy3h299ws7gkqqjhl2cqkf1kgssdmyfnbmm";
+ rev = "f49bd337a4643bb58df0fa4df230d60bdfeef022";
+ sha256 = "06hzvcpkgz51jl6zj67ycga5p9n1y6kk335d3cha24divp4ll1jb";
};
dependencies = [];
};
lightline-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "lightline-vim-2016-05-14";
+ name = "lightline-vim-2016-05-16";
src = fetchgit {
url = "git://github.com/itchyny/lightline.vim";
- rev = "6de7b19812e3051f739fe05dbd23f040b870c00b";
- sha256 = "1qc95dnmg3zqvizfy1bk2yvw0vkyz547m7a06ccln9pd4hy0kgfk";
+ rev = "ac5e6df5cac0f3ff3078c51f715978288a5c351d";
+ sha256 = "1q3zkfg8dq7760jlm207f6d85c46q8x2hfdqmdxkbagvhb9c0f4y";
};
dependencies = [];
@@ -578,7 +590,7 @@ rec {
src = fetchgit {
url = "git://github.com/itchyny/thumbnail.vim";
rev = "4afdc473b47d162610965fa5ed15fa855cca65d4";
- sha256 = "1fcyjw1dvkpijlcm2lbg81am6h188p1bmi3md6wvk48vdj2h56r5";
+ sha256 = "1z5a9dqb788ll5j8gg3hdjjggwpx0b073v5dr8zlrk1zjwah56gw";
};
dependencies = [];
@@ -589,7 +601,7 @@ rec {
src = fetchgit {
url = "git://github.com/ivanov/vim-ipython";
rev = "42499f094b805b90b683afa5009cee99abd0bb75";
- sha256 = "0b9g4ny32772x78k0nnarnm6arm3bj2nxj83sxaqaascvvnw6nbz";
+ sha256 = "10wpfvfs8yv1bvzra4d5zy5glp62gbalpayxx7mkalhr2ccppy3x";
};
dependencies = [];
@@ -611,7 +623,7 @@ rec {
src = fetchgit {
url = "git://github.com/jceb/vim-orgmode";
rev = "e0d56a6e93798b7a503bb4ab86fec016cd74d466";
- sha256 = "1nm04d5ngbk21c0ykjbflqn9xym1x67rijq7wsgmmm79q0irn25q";
+ sha256 = "0704wli8n1x4v40mdfj0icjarr52iqvw2byzsvyzb420wpf1nqpb";
};
dependencies = [];
@@ -622,7 +634,7 @@ rec {
src = fetchgit {
url = "git://github.com/jeetsukumaran/vim-buffergator";
rev = "611966d1ced784d5659c5dc07e984fabd95d917f";
- sha256 = "1fypzqwl89gk024742d59d0ax9wl2xv40bpfmby0cnh1f5hqias3";
+ sha256 = "1brb6qwlgxq4zcmrqp7wf2zvfvdq4zm8ynzg8wg9rq5cmyp8f61z";
};
dependencies = [];
@@ -644,7 +656,7 @@ rec {
src = fetchgit {
url = "git://github.com/jistr/vim-nerdtree-tabs";
rev = "0decec122e9bb3e9328b01fa20a9650e79cc6ca7";
- sha256 = "1hmxwwxfrk6c6g2mivazpl72s5vw1w5dvl10ivpn52lfw4xgqjxc";
+ sha256 = "0m51vpxq0d3mxy9i18hczsbqsqi7vlzwgjnpryb8gb5wmy999d6l";
};
dependencies = [];
@@ -684,22 +696,22 @@ rec {
};
fzf-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "fzf-vim-2016-05-17";
+ name = "fzf-vim-2016-05-18";
src = fetchgit {
url = "git://github.com/junegunn/fzf.vim";
- rev = "78c3d254ae29ac877e73e85545c3ae200203f168";
- sha256 = "0lsmn3a9qnjkmw5gzhk2lgr1qg0mi9g0l96vj5v4178432swgsrv";
+ rev = "ecb3131d3fc236c29bb2643dc3ebd89bcf8743f1";
+ sha256 = "0wl993vkccy3y03i2jz04ggdkbzlnkkgbba2gmxfyfdn3692c7y5";
};
dependencies = [];
};
limelight-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "limelight-vim-2016-04-12";
+ name = "limelight-vim-2016-05-17";
src = fetchgit {
url = "git://github.com/junegunn/limelight.vim";
- rev = "be8c754eb1cc947521831d0d2e2fb9da5420d57a";
- sha256 = "1nhk4rmpfbp1q9rbihz014v7mk4ai4zpk88k3dmj6ymvmmxj2ayh";
+ rev = "e93c8013bb66d4b6622e24e0e3a97e71a032d9ec";
+ sha256 = "1xq3fa44fz3dfl52y0ygm21pa8b121b5lsdflcvn0igvisdkzl6g";
};
dependencies = [];
@@ -721,7 +733,7 @@ rec {
src = fetchgit {
url = "git://github.com/justincampbell/vim-eighties";
rev = "62a9719df45fddd0456bf47420fc4768f9c8f5a5";
- sha256 = "108yv5kwcfx7wjn3pqak86vsmcng0ha5s452pl75q3k580f6sf5k";
+ sha256 = "1ada7f2lhdwjqmy5kxma69s215z4phi4khh8hsy5qd6k3a4bvyrs";
};
dependencies = [];
@@ -732,7 +744,7 @@ rec {
src = fetchgit {
url = "git://github.com/latex-box-team/latex-box";
rev = "3c2901e12cb78bfb2be58ba4c62a488612550fe1";
- sha256 = "10af319r8y94dnqv8js5fgdr2n482hgkl641hkd3i563159c9wla";
+ sha256 = "1z4mdy47cpwcdhvy8mr72vhlybxn1y59yd3ixf6ids1bzpkrd7zl";
};
dependencies = [];
@@ -754,7 +766,7 @@ rec {
src = fetchgit {
url = "git://github.com/lervag/vimtex";
rev = "57df1d1686ab339eec93ac51b02993c8c54343c5";
- sha256 = "1lfry5njp6w3gan54xmilczzqryj9n27xdgs72svaljla6c7lbdy";
+ sha256 = "08mnd84w4hh4vz5wpx5yxyyfwjzf2cwcqcq4ma6m8h6xr9h4miiz";
};
dependencies = [];
@@ -765,7 +777,7 @@ rec {
src = fetchgit {
url = "git://github.com/lokaltog/vim-easymotion";
rev = "5c6f3cd9a713491e6b32752a05c45198aa91540a";
- sha256 = "086zih2mjrv1s596sw09a0vkaijm0ml3v2668n45cpxb04aa11d7";
+ sha256 = "0nr50c6hsg43bc86gkiram5whkggjpszffl8xkqxdmlspz9h96v3";
};
dependencies = [];
@@ -791,7 +803,7 @@ rec {
src = fetchgit {
url = "git://github.com/mhinz/vim-startify";
rev = "e74cc71b1b7b33f6df6e8b48ff4b0f587f6bfed9";
- sha256 = "1dimkqzmcw8w10wf75b10bvmskyf9ahxxiyvac4kbr7bipmzz1b3";
+ sha256 = "1s7kys6kj7jrs1z3i8fgb9y1f45halwgpkgw34518ljmjx8n42sa";
};
dependencies = [];
@@ -802,7 +814,7 @@ rec {
src = fetchgit {
url = "git://github.com/mkasa/lushtags";
rev = "641e4163d078e7c3844f2ac82a8153a3ef06484b";
- sha256 = "0fydgz40bfnz6jpmv9bbr3b5bb5vd1514zk9qg3wh12ynpfhqc89";
+ sha256 = "1zqgvflkw0pnrv6bzvlsd98sc2m7nk5w3bzqdzj3xdi8ahqx239g";
};
dependencies = [];
@@ -831,11 +843,11 @@ rec {
};
haskell-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "haskell-vim-2016-05-10";
+ name = "haskell-vim-2016-05-17";
src = fetchgit {
url = "git://github.com/neovimhaskell/haskell-vim";
- rev = "4e87782d1657ac1556c2128ff8dee967953554a1";
- sha256 = "0yyk7ja6ljhn9s55v3d0fsnk0a3y0skcb0wjjspk2nvdj90s4n8z";
+ rev = "f73cdcdf72e9200420fc74491b6cd215512c3330";
+ sha256 = "1fgcfcslb6p84xcv1ighd8i4p4960vac7f7zpvl0d7bpp75ci07b";
};
dependencies = [];
@@ -857,18 +869,18 @@ rec {
src = fetchgit {
url = "git://github.com/osyo-manga/vim-watchdogs";
rev = "ebcf3df39007aa5d65910f44eb20c9caea9007df";
- sha256 = "0b0sicq8vgil9nm6vnp3k1vlsc6na54cy95pb68w4bj7mscd0q9j";
+ sha256 = "09wajb6kxvxnqaysj5hhp1g79hzz3bazmbpnj7nn5fdaf83rd8jl";
};
dependencies = [];
};
vim-racer = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-racer-2016-05-12";
+ name = "vim-racer-2016-05-17";
src = fetchgit {
url = "git://github.com/racer-rust/vim-racer";
- rev = "6677d268b3bb2770379874eaea275632bf59ff76";
- sha256 = "08g1wbc3cwgkhpyn954n3bb5qyp2zz9lifxzfgndxb0dhmxprf15";
+ rev = "216075acfb1b369199244fec83b5f49a96ae2bda";
+ sha256 = "1r1ypiw931rpk5i37s7qg9nlly994x5qkamc7rqv6fsmnbjhazm1";
};
dependencies = [];
@@ -879,7 +891,7 @@ rec {
src = fetchgit {
url = "git://github.com/rust-lang/rust.vim";
rev = "115d321d383eb96d438466c56cc871fcc1bd0faa";
- sha256 = "1xanv9933vh9rzki6vfzshiav6xrx7025a40v2q9c1l2zx3iz7pb";
+ sha256 = "0j9vp3kb9kiza3h6jr8csqmdcsdp4g2qix70lvyh6ybrbkz84ghw";
};
dependencies = [];
@@ -890,7 +902,7 @@ rec {
src = fetchgit {
url = "git://github.com/shougo/neocomplete.vim";
rev = "81d39635625730ca43f08762e2908b96e7b7f077";
- sha256 = "0kqyfpz2apj1pz6p4mqzy4256cxmdbd9ra9hiz2f92wymgmnwpcv";
+ sha256 = "0lqvklg2vm8vcgj0786wi103wzr71v2l9i3f215kg9did2nnmky9";
};
dependencies = [];
@@ -908,22 +920,22 @@ rec {
};
neosnippet-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "neosnippet-vim-2016-03-30";
+ name = "neosnippet-vim-2016-05-17";
src = fetchgit {
url = "git://github.com/shougo/neosnippet.vim";
- rev = "ce3c3d209c38a6d87bbf1408d293e179f95e7bb8";
- sha256 = "0lp1p8vwnnwrnhiivzzzd0688vivyxqjgl75piq0xfw24v9ncgcf";
+ rev = "9eac227835317d2fad9ae9b816590ce33a3ab7c4";
+ sha256 = "0hbj03rhrlga9fszd3ryyrfl93fmxsc3892swdaa3zhl18zfn0m2";
};
dependencies = [];
};
unite-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "unite-vim-2016-05-15";
+ name = "unite-vim-2016-05-17";
src = fetchgit {
url = "git://github.com/shougo/unite.vim";
- rev = "5638a2469ecb29eb302aee668981d61da96d301f";
- sha256 = "0jblcwqdq8jgday3khnvari9gijsfvyc0s0c585x0i255rmq414y";
+ rev = "503e03fdf1485e8f54cbe76d09bf608fcde29107";
+ sha256 = "028mp6lcrfc4p9wixcai0iyfj7n82d1rnq1lz38xcf7a5djr9fpm";
};
dependencies = [];
@@ -934,7 +946,7 @@ rec {
src = fetchgit {
url = "git://github.com/shougo/vimproc.vim";
rev = "0ff17bc0725cd0323df87664fa02b1436349f667";
- sha256 = "0r5kfj1zl9hld9rx5jdvgmdr30d573ncikily0qcjl90y4rjw3fp";
+ sha256 = "14j8ypn54cidh4bk3nqsc0ablwvgydlsbmb256rq512gpwkm2mil";
};
dependencies = [];
buildInputs = [ which ];
@@ -953,7 +965,7 @@ rec {
src = fetchgit {
url = "git://github.com/shougo/vimshell.vim";
rev = "bdcd197b701734a743903c7547e9f56842701614";
- sha256 = "04b4kzjg0b8blfqcc21vvn7myq9g7iyn2zy1ypiil64bbch1aw3p";
+ sha256 = "1cv2mdkhq3kvs91cd7d703b6567glb3snvg27vmj1p8amzxjf97d";
};
dependencies = [ "vimproc-vim" ];
};
@@ -963,7 +975,7 @@ rec {
src = fetchgit {
url = "git://github.com/sjl/gundo.vim";
rev = "e7fe41024ace9047eee610f23311d44fd9d917c0";
- sha256 = "1kdz2qr4z2k2dz6p0jr6y5zwi7n7k1g3m2k52iz03dicvmb5d59h";
+ sha256 = "14mx617mxh7q6rhjfcnv080hpr965vhqzfwhlizpmzc16lsf7ni1";
};
dependencies = [];
@@ -1003,11 +1015,11 @@ rec {
};
vim-quickrun = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-quickrun-2016-05-10";
+ name = "vim-quickrun-2016-05-18";
src = fetchgit {
url = "git://github.com/thinca/vim-quickrun";
- rev = "76f576959cc7d971fcb5ffea25ad72887e3ea035";
- sha256 = "06nbx1ssg95nv3z3i75m134jbihk7iajkf7plfr46i2vmrj602c5";
+ rev = "3bdd13cc577b58a90d7964f2fe4446b2e65ea77a";
+ sha256 = "0lpnq1pkv8zjj99gfsa21bvz2g1bspxkqjbs3m4h49g1695bf5w9";
};
dependencies = [];
@@ -1029,7 +1041,7 @@ rec {
src = fetchgit {
url = "git://github.com/tpope/vim-eunuch";
rev = "5ee2b82b565e6c6d80f1cb7735c78f66a159b198";
- sha256 = "1ampwnbi0vpl4g6aj2rax0v902fxk1jyz6azvnnffqzr0b2rnk9b";
+ sha256 = "108v98qy49w2pgzndmqc9nydmsql2bnbcc849wshvkxgca349ixc";
};
dependencies = [];
@@ -1040,7 +1052,7 @@ rec {
src = fetchgit {
url = "git://github.com/travitch/hasksyn";
rev = "c434040bf13a17ca20a551223021b3ace7e453b9";
- sha256 = "0c8r72qw7r7sd2cww07x6n2sp5cwkgamjf8khcdh39zcia93b9xi";
+ sha256 = "09998lnfcshqis5m062wlag6y476imq9jday9gp4ayjjl1cp3cwx";
};
dependencies = [];
@@ -1058,11 +1070,11 @@ rec {
};
youcompleteme = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "youcompleteme-2016-05-11";
+ name = "youcompleteme-2016-05-17";
src = fetchgit {
url = "git://github.com/valloric/youcompleteme";
- rev = "6a81436bd83d174f63c5691e1a9eb24470108942";
- sha256 = "0ir28yk3sgy66y8xxrj9628881lmp6l7bg52zjgycdz57hv85zlg";
+ rev = "fa583935476776ef274adf1d516d1497d5bb573d";
+ sha256 = "0i6zr4x28j5lfqsbaq9mdpzxyppkrj2hlh4w1inx94f2sfijf1m5";
};
dependencies = [];
buildInputs = [
@@ -1098,11 +1110,11 @@ rec {
};
vim-airline-themes = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-airline-themes-2016-05-14";
+ name = "vim-airline-themes-2016-05-16";
src = fetchgit {
url = "git://github.com/vim-airline/vim-airline-themes";
- rev = "8bf1961e3b50551956fe2703bdfca1eb84ba1daf";
- sha256 = "1ifvg5pmy8g8pcwvx6pnlym2v6szaziliqvl46da8g7g3mxmd4zb";
+ rev = "97a042a57af7f04e25fddb6e694d75be1d55be02";
+ sha256 = "1sgkwjrh8g01kykzbz6dm5giycrq3vqi0f3m5ppvijhj8yind69s";
};
dependencies = [];
@@ -1113,7 +1125,7 @@ rec {
src = fetchgit {
url = "git://github.com/vim-pandoc/vim-pandoc";
rev = "b32791d3cfc999344a9acf22738b41e8ab21aec7";
- sha256 = "1lvq9767ng8156l5946z44sw2s19mb70hn7afxkdsk9771agd365";
+ sha256 = "1rmwj2a4570b5s1hy1grnfm0hyn919w07z7a2phv7bir0x1xw76c";
};
dependencies = [];
@@ -1124,7 +1136,7 @@ rec {
src = fetchgit {
url = "git://github.com/vim-pandoc/vim-pandoc-after";
rev = "4377665e5c98f29ea838deb3b942200b8dd096ef";
- sha256 = "1di82bgi7sjn7lmma7g9zbdraamsy9c6g7ms6jgglfvynbbvmgg0";
+ sha256 = "1379g174pvsaw1wdv1n18gby84sv59rsamfcgq9bqd4kg54g6h3j";
};
dependencies = [];
@@ -1135,7 +1147,7 @@ rec {
src = fetchgit {
url = "git://github.com/vim-pandoc/vim-pandoc-syntax";
rev = "a35e9ce28bae85b1ce5d4f817882a8d78efcd6be";
- sha256 = "1d3yw2v9giw2nyk4yb8qdav42wki81g8nzn3dz3rzb6dqq1k3skv";
+ sha256 = "08l6sjzvl6bigh4d9rvqadvz8bpq25c1ima4la2i3pg8xgdc9xf3";
};
dependencies = [];
@@ -1219,22 +1231,22 @@ rec {
};
vim-wakatime = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-wakatime-2016-04-29";
+ name = "vim-wakatime-2016-05-16";
src = fetchgit {
url = "git://github.com/wakatime/vim-wakatime";
- rev = "2d30996a1622a7f2cd9bf55cf9078d4301648f4c";
- sha256 = "0mkj6bxxjdyi7dd52nfk881ayjym5rqa5r4zjcra9lhbh0fcdhfk";
+ rev = "082a711995d6af11a1b4c35a1f122d2fcfa23bc1";
+ sha256 = "1xy0wwr8pilrba1bhgbkwvd18fjvxl9g9v4xsf72lh3n6fr05ydq";
};
dependencies = [];
buildInputs = [ python ];
};
command-t = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "command-t-2016-03-12";
+ name = "command-t-2016-05-16";
src = fetchgit {
url = "git://github.com/wincent/command-t";
- rev = "2d80b2e65cd690dd17c66fb52e5f9fb09700b1e7";
- sha256 = "1ndzjsrf2nz7gaq6q58p4pna82a4zbirclyjkgzg6a58qinhm3pi";
+ rev = "99d06fa02753be74cc44f487c255d9326eca8c9a";
+ sha256 = "14yqy841qfvmz42bhyrbcs1sc0bxmzrz33xz4iphpkhvg7ilsmd2";
};
dependencies = [];
buildInputs = [ perl ruby ];
@@ -1251,7 +1263,7 @@ rec {
src = fetchgit {
url = "git://github.com/junegunn/goyo.vim";
rev = "8e8f1d45b61e1fce7f84ee061c38f9e033e86ff9";
- sha256 = "0q3in448s99df4dls4vlfsnh15q9rargsb68axj4z5z0jdkncpwi";
+ sha256 = "120farhbfyzd7k1s1i68drwa5zzzm9yrcwzw45gwa2j7kqbv4hnx";
};
dependencies = [];
@@ -1328,7 +1340,7 @@ rec {
src = fetchgit {
url = "git://github.com/tpope/vim-sleuth";
rev = "a17462708aa40a7fc0afd4effa559087d8a2c908";
- sha256 = "09b01ywp0yd3lajs7gzv17qvjwbffdh6k014ws92b50cwv2vgx3j";
+ sha256 = "12s7nl3c15i9wyinhzw9biymsyw74akx96nzix9p9979nxhmi09m";
};
dependencies = [];
@@ -1339,7 +1351,7 @@ rec {
src = fetchgit {
url = "git://github.com/garbas/vim-snipmate";
rev = "66555c2a86ba2136459190c06aa2c0f25ad38bb3";
- sha256 = "01dnscgnkjy8q5ajnxsaxi1zn97v1fbhr4q5sjdqazdis9zxlqq2";
+ sha256 = "1156g0iwy4fdfvb9922jvbxyn5k6z094m0y11igamb5d4kv7v72y";
};
dependencies = ["vim-addon-mw-utils" "tlib"];
@@ -1361,7 +1373,7 @@ rec {
src = fetchgit {
url = "git://github.com/tpope/vim-surround";
rev = "2d05440ad23f97a7874ebd9b5de3a0e65d25d85c";
- sha256 = "0l5kvn2b1v2h90c02ymgsv88p89d0hzsbr6zwf0p2x2f72xjqdz5";
+ sha256 = "1b74l52a2yi9r5j6w3mcyhacdxajs3ndab1viw632nprqqsh8qb4";
};
dependencies = [];
@@ -1372,7 +1384,7 @@ rec {
src = fetchgit {
url = "git://github.com/dhruvasagar/vim-table-mode";
rev = "b613e39bd08ecebdb9b18100dae518050f496048";
- sha256 = "0vqiqph6y1dcfhy5xwh3ksafdzhrinpdppvjvw51xhy8i9ycznf6";
+ sha256 = "1bachhk21x507q8xp4a6a8lpsqs2miv97lnjjf6q9qh0crxhv3z8";
};
dependencies = [];
@@ -1404,18 +1416,18 @@ rec {
src = fetchgit {
url = "git://github.com/tomtom/tlib_vim";
rev = "34b13299b5da7ad66ea387027d458bd54127687c";
- sha256 = "18jhq6m25qv0cfm5iyxi268x1cww6xi5p4hx4c48fsq919bk6k8f";
+ sha256 = "0dwcwqxbfq7gy3iy5smx3zqp2v62p8166vj02bhrrr5zkv8rqnb3";
};
dependencies = [];
};
undotree = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "undotree-2016-05-08";
+ name = "undotree-2016-05-16";
src = fetchgit {
url = "git://github.com/mbbill/undotree";
- rev = "0917446af029a055a34f12bf668ea0d561e97037";
- sha256 = "0v174icbhgvyddqg1psws3fyian5pwn4cki7skwlsxp6ahl49kal";
+ rev = "97ef890fea5452c1c4c68f0d864c7969d7aba578";
+ sha256 = "06mifmfqvzy8af54s0h9hjcmhxgjccikqilfz9l8hn3gdl7ixfix";
};
dependencies = [];
@@ -1426,7 +1438,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-actions";
rev = "a5d20500fb8812958540cf17862bd73e7af64936";
- sha256 = "10v3vxgrlfdd34s5kvh4si985gpygv804fygdwy27rr93xxfphyj";
+ sha256 = "1wfkwr89sn2w97i94d0dqylcg9mr6pirjadi0a4l492nfnsh99bc";
};
dependencies = ["vim-addon-mw-utils" "tlib"];
@@ -1437,7 +1449,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-async";
rev = "dadc96e188f1cdacbac62129eb29a1eacfed792c";
- sha256 = "01sxg88578drmwxpphpj7r7mb7l0wfly4509s85r99cc3bi43y97";
+ sha256 = "0b95l4ig8as82swhavsdica93bv5j55kvldfl7frkfp5zwcwi90f";
};
dependencies = ["vim-addon-signs"];
@@ -1448,7 +1460,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-background-cmd";
rev = "abf2abf339652d2bc79da81f9d131edfe2755f5a";
- sha256 = "080wfsid1iq5b9lqapg0wis5642c69sf9nh9rhs79qapl6x3w8h6";
+ sha256 = "0csy68x686l3x5ancidxb5b6prg9k7ikybqzq3klx0gs5rmksfy4";
};
dependencies = ["vim-addon-mw-utils"];
@@ -1459,7 +1471,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-commenting";
rev = "b7cf748ac1c9bf555cbd347589e3b7196030d20b";
- sha256 = "0glvpq7i8s9jdi6lvpl8hpyd7mrhq14kdkn94i51n2lzcvvdbmsa";
+ sha256 = "0alak8h33vada2ckb0v06y82qlib5mhyc2yswlv1rqh8ypzhq3mc";
};
dependencies = [];
@@ -1470,7 +1482,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-completion";
rev = "021c449a5ce1ce4ac0af5955e05b0279c1cc0e75";
- sha256 = "1sm00gs0h96kh7h64gjkyniw07495vqylh157m2f9xzd953lg6ln";
+ sha256 = "1ld059y2qwlc5bdfjm2p314s1qh31lxs54g944pw49r46s5nlslr";
};
dependencies = ["tlib"];
@@ -1492,7 +1504,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-goto-thing-at-cursor";
rev = "f052e094bdb351829bf72ae3435af9042e09a6e4";
- sha256 = "1skq43y7laq2ric7bqh9abx9mxix5k6xzcs4qnwhsqwskp4qlr9l";
+ sha256 = "1ksm2b0j80zn8sz2y227bpcx4jsv76lwgr2gpgy2drlyqhn2vlv0";
};
dependencies = ["tlib"];
@@ -1514,7 +1526,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-manager";
rev = "872f9302cf0eb8e9cb6259ea4f329d2265f9e32d";
- sha256 = "0rl6sy1gfjsfr1hg2ilhhxppifvjfqn815kh27b3ikcy82rp7sb0";
+ sha256 = "14aixpj9p8b568mdh4pl7bmpw1rsc4d7axqr09g1m0a8q6rxipc7";
};
dependencies = [];
buildInputs = stdenv.lib.optional stdenv.isDarwin Cocoa;
@@ -1536,7 +1548,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-mw-utils";
rev = "0c5612fa31ee434ba055e21c76f456244b3b5109";
- sha256 = "075r4a73vv6hcrsfznac32nicdk0x7lvxx4fwmii03q5b4dns6sf";
+ sha256 = "147s1k4n45d3x281vj35l26sv4waxjlpqdn83z3k9n51556h1d45";
};
dependencies = [];
@@ -1547,7 +1559,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-nix";
rev = "2aed79ba5d8c5e6abd102de77e55e242f61b17f1";
- sha256 = "1qipxzn79nbmjzppa0r59796r56xz5g88jm66fjpqndndhn6wchf";
+ sha256 = "0zx1q9994py6jmm0qbbx6fc1dy5la8zfskkbvqqxssxrl5dx7vvi";
};
dependencies = ["vim-addon-completion" "vim-addon-goto-thing-at-cursor" "vim-addon-errorformats" "vim-addon-actions" "vim-addon-mw-utils" "tlib"];
@@ -1558,7 +1570,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-other";
rev = "f78720c9cb5bf871cabb13c7cbf94378dbf0163b";
- sha256 = "06sdjnyp2hqs0kia2hzflyxwiwpp14mkrhhm4l3k2q2pnzj2gw23";
+ sha256 = "0cjz7mlyfkkncas4ss7rwxb0q38ls1qw1p15hac1imscscsvyjc6";
};
dependencies = ["vim-addon-actions" "vim-addon-mw-utils"];
@@ -1580,7 +1592,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-signs";
rev = "17a49f293d18174ff09d1bfff5ba86e8eee8e8ae";
- sha256 = "1f4gk984760cbkkwl9isqwab63ghny61h18nfh313maqwwr3mh59";
+ sha256 = "0i4gfp30hmw1vqjl6zxjrgkca3ikdkcnjmma2mncjmcr6f59kjzy";
};
dependencies = [];
@@ -1591,7 +1603,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-sql";
rev = "05b8a0c211f1ae4c515c64e91dec555cdf20d90b";
- sha256 = "1hjpx5s1vn8v7y73gis408jdy8vjivhag2ycp8lk5870jkk4lcx1";
+ sha256 = "15l2201jkfml08znvkkpy7fm3wn87n91zgd9ysrf5h73amjx9y2w";
};
dependencies = ["vim-addon-completion" "vim-addon-background-cmd" "tlib"];
@@ -1613,7 +1625,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-toggle-buffer";
rev = "a1b38b9c5709cba666ed2d84ef06548f675c6b0b";
- sha256 = "0mb0vyr5rr0ywk26l9cwcplpfzsqdwv49d2nzdx1g685zvn6c8b7";
+ sha256 = "1xq38kfdm36c34ln66znw841q797w5gm8bpq1x64bsf2h6n3ml03";
};
dependencies = ["vim-addon-mw-utils" "tlib"];
@@ -1624,7 +1636,7 @@ rec {
src = fetchgit {
url = "git://github.com/MarcWeber/vim-addon-xdebug";
rev = "45f26407305b4ce6f8f5f37d2b5e6e4354104172";
- sha256 = "1vv4jha79sw8yxzl9aygr44khqi8yrmz9ysvs95wjwk7yg5g4yqa";
+ sha256 = "1i64ppdfp2qqq7vw1jf160mj4ikc04v39iazdab83xmiqjsh8ixw";
};
dependencies = ["WebAPI" "vim-addon-mw-utils" "vim-addon-signs" "vim-addon-async"];
@@ -1635,18 +1647,7 @@ rec {
src = fetchgit {
url = "git://github.com/vim-airline/vim-airline";
rev = "70c16f4c46f11395bbbc30b2f0a6822669e7df87";
- sha256 = "1ib3rs0ysz41dxk4fmzjrha005adrrlya5bnb8cv1p1ny7ipny1d";
- };
- dependencies = [];
-
- };
-
- vim-closetag = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-closetag-2016-04-21";
- src = fetchgit {
- url = "git://github.com/alvan/vim-closetag";
- rev = "26e41a5b0c3752d5300506a49120d9dff19d8323";
- sha256 = "0c8x25hb912jmhf5jpfll08937wr2yls28i9divldm9jkmxvcx2k";
+ sha256 = "0sa3my8jhslcrk81lfk8f32wnq1akxazxpxhjmiwmpws74kbibql";
};
dependencies = [];
@@ -1657,7 +1658,7 @@ rec {
src = fetchgit {
url = "git://github.com/kchmck/vim-coffee-script";
rev = "32fe889b8cafd3a4921ef8e6485156453ff58c42";
- sha256 = "14464xyjiw58n785xrkyd5qrinz2gb0p4yhxh6b9r5698qjjn5np";
+ sha256 = "1x2kk9jm3948avvz3ywakmhdr3x99qfa54fk1pfphny3mrfv4l65";
};
dependencies = [];
@@ -1668,7 +1669,7 @@ rec {
src = fetchgit {
url = "git://github.com/junegunn/vim-easy-align";
rev = "0cb6b98fc155717b0a56c110551ac57d1d951ddb";
- sha256 = "089c4grk24albishgxdskb1zsvxbzlp2yq1baf0vy6cryxwm8ykq";
+ sha256 = "10j1fz7si7xqqs4p7h66jd0xzr116cv3xjyac9p20fc0yyyg1wbh";
};
dependencies = [];
@@ -1686,11 +1687,11 @@ rec {
};
vim-gitgutter = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-gitgutter-2016-05-13";
+ name = "vim-gitgutter-2016-05-18";
src = fetchgit {
url = "git://github.com/airblade/vim-gitgutter";
- rev = "cae4f72aa1290c353aa8d0898cac0781ef2ee538";
- sha256 = "0kx117v92pglm72m52p6d2pqa1gsnzy476l7ai1c23jk696pl9vq";
+ rev = "90c558b1dc4ebd23e638f27f04b08405d80c8084";
+ sha256 = "1svjybh2rldr3ay07fp6zdcwyqnk78z5r46bqzwvcv4g2wnk075x";
};
dependencies = [];
@@ -1723,18 +1724,18 @@ rec {
src = fetchgit {
url = "git://github.com/terryma/vim-multiple-cursors";
rev = "25b567baf712a7e9bc8f3c9ca816bd579363109b";
- sha256 = "1jvg5i76k58sz56z615pb7s7gg7jn0dpwf7rr76v22v4zpyij70h";
+ sha256 = "0y4gmk4m43ia94dkir2i3qs5z8i00r7yk22hrdws6nqrpnf7dp13";
};
dependencies = [];
};
vim-signature = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-signature-2016-04-10";
+ name = "vim-signature-2016-05-19";
src = fetchgit {
url = "git://github.com/kshenoy/vim-signature";
- rev = "31028e7a0d015b04a51e721af155fd11d1b6ac76";
- sha256 = "1f78ipkfnhmlhw88ii6rqxwfm7qpdc1c8v2716il240bk08khkff";
+ rev = "2a2915685f78c60e6c95d936e8881d9336c3b03a";
+ sha256 = "1sd4502bixs8311dj1w20jdwf1lgrbkz696ay9r0ywhxp7ri0qs4";
};
dependencies = [];
@@ -1752,11 +1753,11 @@ rec {
};
vim-snippets = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vim-snippets-2016-05-16";
+ name = "vim-snippets-2016-05-17";
src = fetchgit {
url = "git://github.com/honza/vim-snippets";
- rev = "a9b920b478e2c92bb8ce699c27835013a2cc25fb";
- sha256 = "1msi4kvs7zgyi6l9jf0w462kw3lfsxb4bg7i3vrd16zcr5n742mj";
+ rev = "f6d0b68e477c1562c8086a2c503b8742608351b3";
+ sha256 = "11g2bmi2p0fyd7091zkc990nxa2npf2azfbw3a9m6h5bnklxvi3a";
};
dependencies = [];
@@ -1767,7 +1768,7 @@ rec {
src = fetchgit {
url = "git://github.com/ryanoasis/vim-devicons";
rev = "ad5d6d7f9fdf741a1e0d45b2bebab1d0116e1158";
- sha256 = "039asq5ggbpjc3g8xnd7bgk2szqqgmdh5xa7xhr8yfag26mal1ja";
+ sha256 = "0i3frd23zwbxypj8xgv4hc44wzc2803p15852iqz3k0xr8y8rjxd";
};
dependencies = [];
@@ -1778,18 +1779,18 @@ rec {
src = fetchgit {
url = "git://github.com/dag/vim2hs";
rev = "f2afd55704bfe0a2d66e6b270d247e9b8a7b1664";
- sha256 = "1c75nxk1vk8hq514wx1zm9i5d3qdpd65mv4v4gr50kmvjn2waps8";
+ sha256 = "18lqrl3hqb6cmizc04bbnsh8j0g761w2q8wascbzzfw80dmxy36b";
};
dependencies = [];
};
vimwiki = buildVimPluginFrom2Nix { # created by nix#NixDerivation
- name = "vimwiki-2016-04-25";
+ name = "vimwiki-2016-05-18";
src = fetchgit {
url = "git://github.com/vimwiki/vimwiki";
- rev = "f56700932967f09ea6faa0bad60367b0d6b19a0d";
- sha256 = "1x176z40653nqp4rgla298dazwyh3rm95k4d4v4qs5hka14b2jfg";
+ rev = "4831384ab9f1c40c9e433857d958c4d9a7beb8ec";
+ sha256 = "1wjbsd37h5fxkkia90h708mmqisdj0kxzm9k97jm2zq36zngmd86";
};
dependencies = [];
@@ -1811,7 +1812,7 @@ rec {
src = fetchgit {
url = "git://github.com/gmarik/vundle";
rev = "4984767509e3d05ca051e253c8a8b37de784be45";
- sha256 = "0n2k3ip81yfx00ch45nqiwayhz8qxmwg5s34a4k5snapzcxcm2fn";
+ sha256 = "15450wz15pwv9sbvnmb60z5nshsssw4y1xy8smp332605b53kski";
};
dependencies = [];
diff --git a/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/YankRing b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/YankRing
new file mode 100644
index 00000000000..1776c1b91ea
--- /dev/null
+++ b/pkgs/misc/vim-plugins/vim2nix/additional-nix-code/YankRing
@@ -0,0 +1 @@
+ sourceRoot = ".";
diff --git a/pkgs/os-specific/linux/ati-drivers/builder.sh b/pkgs/os-specific/linux/ati-drivers/builder.sh
index b9f6ed22cba..2b907bde10a 100644
--- a/pkgs/os-specific/linux/ati-drivers/builder.sh
+++ b/pkgs/os-specific/linux/ati-drivers/builder.sh
@@ -9,6 +9,10 @@ unzip $src
run_file=fglrx-$build/amd-driver-installer-$build-x86.x86_64.run
sh $run_file --extract .
+for patch in $patches;do
+ patch -p1 < $patch
+done
+
case "$system" in
x86_64-linux)
arch=x86_64
@@ -238,6 +242,7 @@ if test -z "$libsOnly"; then
tar xfz ../common/usr/src/ati/fglrx_sample_source.tgz
eval "$patchPhaseSamples"
+
( # build and install fgl_glxgears
cd fgl_glxgears;
gcc -DGL_ARB_texture_multisample=1 -g \
@@ -258,10 +263,10 @@ if test -z "$libsOnly"; then
cd programs/fglrx_gamma
gcc -fPIC -I${libXxf86vm.dev}/include \
- -I${xf86vidmodeproto}/include \
- -I$out/X11R6/include \
- -L$out/lib \
- -Wall -lm -lfglrx_gamma -lX11 -lXext -o $out/bin/fglrx_xgamma fglrx_xgamma.c
+ -I${xf86vidmodeproto}/include \
+ -I$out/X11R6/include \
+ -L$out/lib \
+ -Wall -lm -lfglrx_gamma -lX11 -lXext -o $out/bin/fglrx_xgamma fglrx_xgamma.c
)
{
diff --git a/pkgs/os-specific/linux/ati-drivers/default.nix b/pkgs/os-specific/linux/ati-drivers/default.nix
index a4f8b707c08..e5eb9b8c6c3 100644
--- a/pkgs/os-specific/linux/ati-drivers/default.nix
+++ b/pkgs/os-specific/linux/ati-drivers/default.nix
@@ -65,7 +65,14 @@ stdenv.mkDerivation rec {
curlOpts = "--referer http://support.amd.com/en-us/download/desktop?os=Linux+x86_64";
};
- patchPhaseSamples = "patch -p2 < ${./patch-samples.patch}";
+ patchPhaseSamples = "patch -p2 < ${./patches/patch-samples.patch}";
+ patches = [
+ ./patches/15.12-xstate-fp.patch
+ ./patches/15.9-kcl_str.patch
+ ./patches/15.9-mtrr.patch
+ ./patches/15.9-preempt.patch
+ ./patches/15.9-sep_printf.patch
+ ];
buildInputs =
[ xorg.libXrender xorg.libXext xorg.libX11 xorg.libXinerama xorg.libSM
@@ -101,7 +108,7 @@ stdenv.mkDerivation rec {
# appear in /run/opengl-driver/lib which get's added to LD_LIBRARY_PATH
extraDRIlibs = [ xorg.libXrandr.out xorg.libXrender.out xorg.libXext.out
- xorg.libX11.out xorg.libXinerama.out xorg.libSM.out
+ xorg.libX11.out xorg.libXinerama.out xorg.libSM.out
xorg.libICE.out ];
inherit mesa; # only required to build the examples
diff --git a/pkgs/os-specific/linux/ati-drivers/kernel-api-fixes.patch b/pkgs/os-specific/linux/ati-drivers/kernel-api-fixes.patch
deleted file mode 100644
index f763518b249..00000000000
--- a/pkgs/os-specific/linux/ati-drivers/kernel-api-fixes.patch
+++ /dev/null
@@ -1,99 +0,0 @@
-diff -Nru 15.7/common/lib/modules/fglrx/build_mod/firegl_public.c 15.7.new/common/lib/modules/fglrx/build_mod/firegl_public.c
---- 15.7/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-07-04 10:31:23.000000000 -0400
-+++ 15.7.new/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-08-03 21:21:13.893211082 -0400
-@@ -242,6 +242,14 @@
- #endif
-
- // ============================================================
-+
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(3,18,0)
-+#define __read_cr4 read_cr4
-+#define __write_cr4 write_cr4
-+#endif
-+
-+// ============================================================
-+
- /* globals */
-
- char* firegl = NULL;
-@@ -3495,10 +3503,12 @@
- KCL_PUB_InterruptHandlerWrap,
- #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,22)
- ((useMSI) ? (SA_INTERRUPT) : (SA_SHIRQ)),
--#else
-+#elif LINUX_VERSION_CODE < KERNEL_VERSION(4,1,0)
- //when MSI enabled. keep irq disabled when calling the action handler,
- //exclude this IRQ from irq balancing (only on one CPU)
- ((useMSI) ? (IRQF_DISABLED) : (IRQF_SHARED)),
-+#else
-+ ((useMSI) ? 0 : IRQF_SHARED),
- #endif
- dev_name,
- context);
-@@ -4498,8 +4508,8 @@
-
- if (cpu_has_pge)
- {
-- cr4 = read_cr4();
-- write_cr4(cr4 & ~X86_CR4_PGE);
-+ cr4 = __read_cr4();
-+ __write_cr4(cr4 & ~X86_CR4_PGE);
- }
- __flush_tlb();
-
-@@ -4512,7 +4522,7 @@
- write_cr0(cr0 & 0xbfffffff);
- if (cpu_has_pge)
- {
-- write_cr4(cr4);
-+ __write_cr4(cr4);
- }
- local_irq_restore(flags);
-
-@@ -4539,8 +4549,8 @@
-
- if (cpu_has_pge)
- {
-- cr4 = read_cr4();
-- write_cr4(cr4 & ~X86_CR4_PGE);
-+ cr4 = __read_cr4();
-+ __write_cr4(cr4 & ~X86_CR4_PGE);
- }
- __flush_tlb();
-
-@@ -4552,7 +4562,7 @@
- write_cr0(cr0 & 0xbfffffff);
- if (cpu_has_pge)
- {
-- write_cr4(cr4);
-+ __write_cr4(cr4);
- }
- local_irq_restore(flags);
-
-diff -Nru 15.7/common/lib/modules/fglrx/build_mod/kcl_acpi.c 15.7.new/common/lib/modules/fglrx/build_mod/kcl_acpi.c
---- 15.7/common/lib/modules/fglrx/build_mod/kcl_acpi.c 2015-07-04 10:31:23.000000000 -0400
-+++ 15.7.new/common/lib/modules/fglrx/build_mod/kcl_acpi.c 2015-08-02 19:59:54.797911610 -0400
-@@ -861,7 +861,10 @@
- #elif LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0)
- if(pdev)
- {
-- pci_ignore_hotplug(pdev);
-+ struct pci_dev *bridge = pdev->bus->self;
-+
-+ pdev->ignore_hotplug = 1;
-+ if(bridge) bridge->ignore_hotplug = 1;
- }
- #endif
- }
-diff -Nru 15.7/common/lib/modules/fglrx/build_mod/kcl_str.c 15.7.new/common/lib/modules/fglrx/build_mod/kcl_str.c
---- 15.7/common/lib/modules/fglrx/build_mod/kcl_str.c 2015-07-04 10:31:23.000000000 -0400
-+++ 15.7.new/common/lib/modules/fglrx/build_mod/kcl_str.c 2015-08-03 00:35:25.938410435 -0400
-@@ -169,7 +169,7 @@
- const char* s2,
- KCL_TYPE_SizeSigned count)
- {
-- return strnicmp(s1, s2, count);
-+ return strncasecmp(s1, s2, count);
- }
-
- /** \brief Locate character in string
diff --git a/pkgs/os-specific/linux/ati-drivers/patches/15.12-xstate-fp.patch b/pkgs/os-specific/linux/ati-drivers/patches/15.12-xstate-fp.patch
new file mode 100644
index 00000000000..22e43fc0c7b
--- /dev/null
+++ b/pkgs/os-specific/linux/ati-drivers/patches/15.12-xstate-fp.patch
@@ -0,0 +1,26 @@
+From: Krzysztof Kolasa
+Date: Thu, 26 Nov 2015 14:28:46 +0100
+Subject: [PATCH] Patch for kernel 4.4.0-rc2
+
+constant change of name XSTATE_XP to name XFEATURE_MASK_FP
+---
+ firegl_public.c | 6 +++++-
+ 1 file changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/common/lib/modules/fglrx/build_mod/firegl_public.c b/common/lib/modules/fglrx/build_mod/firegl_public.c
+index 3626c7b..f071d42 100644
+--- a/common/lib/modules/fglrx/build_mod/firegl_public.c
++++ b/common/lib/modules/fglrx/build_mod//firegl_public.c
+@@ -6463,7 +6463,11 @@ static int KCL_fpu_save_init(struct task_struct *tsk)
+ if (!(fpu->state->xsave.xsave_hdr.xstate_bv & XSTATE_FP))
+ #else
+ copy_xregs_to_kernel(&fpu->state.xsave);
+- if (!(fpu->state.xsave.header.xfeatures & XSTATE_FP))
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,4,0)
++ if (!(fpu->state.xsave.header.xfeatures & XFEATURE_MASK_FP))
++#else
++ if (!(fpu->state.xsave.header.xfeatures & XSTATE_FP))
++#endif
+ #endif
+ return 1;
+ } else if (static_cpu_has(X86_FEATURE_FXSR)) {
diff --git a/pkgs/os-specific/linux/ati-drivers/patches/15.9-kcl_str.patch b/pkgs/os-specific/linux/ati-drivers/patches/15.9-kcl_str.patch
new file mode 100644
index 00000000000..20c3bc8a169
--- /dev/null
+++ b/pkgs/os-specific/linux/ati-drivers/patches/15.9-kcl_str.patch
@@ -0,0 +1,14 @@
+--- a/common/lib/modules/fglrx/build_mod/kcl_str.c 2015-09-13 13:47:30.000000000 -0400
++++ b/common/lib/modules/fglrx/build_mod/kcl_str.c 2015-09-13 13:49:42.000000000 -0400
+@@ -169,7 +169,11 @@ int ATI_API_CALL KCL_STR_Strnicmp(const
+ const char* s2,
+ KCL_TYPE_SizeSigned count)
+ {
++#if LINUX_VERSION_CODE < KERNEL_VERSION(4,0,0)
+ return strnicmp(s1, s2, count);
++#else
++ return strncasecmp(s1, s2, count);
++#endif
+ }
+
+ /** \brief Locate character in string
diff --git a/pkgs/os-specific/linux/ati-drivers/patches/15.9-mtrr.patch b/pkgs/os-specific/linux/ati-drivers/patches/15.9-mtrr.patch
new file mode 100644
index 00000000000..bdf70b4ccdc
--- /dev/null
+++ b/pkgs/os-specific/linux/ati-drivers/patches/15.9-mtrr.patch
@@ -0,0 +1,27 @@
+--- a/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-09-19 23:43:22.000000000 -0400
++++ b/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-09-19 23:52:07.000000000 -0400
+@@ -3442,7 +3442,11 @@ int ATI_API_CALL KCL_MEM_MTRR_Support(vo
+ int ATI_API_CALL KCL_MEM_MTRR_AddRegionWc(unsigned long base, unsigned long size)
+ {
+ #ifdef CONFIG_MTRR
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)
++ return arch_phys_wc_add(base, size);
++#else
+ return mtrr_add(base, size, MTRR_TYPE_WRCOMB, 1);
++#endif
+ #else /* !CONFIG_MTRR */
+ return -EPERM;
+ #endif /* !CONFIG_MTRR */
+@@ -3451,7 +3455,12 @@ int ATI_API_CALL KCL_MEM_MTRR_AddRegionW
+ int ATI_API_CALL KCL_MEM_MTRR_DeleteRegion(int reg, unsigned long base, unsigned long size)
+ {
+ #ifdef CONFIG_MTRR
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)
++ arch_phys_wc_del(reg);
++ return reg;
++#else
+ return mtrr_del(reg, base, size);
++#endif
+ #else /* !CONFIG_MTRR */
+ return -EPERM;
+ #endif /* !CONFIG_MTRR */
diff --git a/pkgs/os-specific/linux/ati-drivers/patches/15.9-preempt.patch b/pkgs/os-specific/linux/ati-drivers/patches/15.9-preempt.patch
new file mode 100644
index 00000000000..c6598835133
--- /dev/null
+++ b/pkgs/os-specific/linux/ati-drivers/patches/15.9-preempt.patch
@@ -0,0 +1,103 @@
+--- a/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-08-30 17:36:02.000000000 -0400
++++ b/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-08-30 17:39:36.000000000 -0400
+@@ -21,6 +21,8 @@
+ !!! since it requires changes to linux/init/main.c.
+ #endif /* !MODULE */
+
++#include
++
+ // ============================================================
+ #include
+
+@@ -4997,7 +4999,9 @@ static unsigned int kas_spin_unlock(kas_
+ unsigned long ATI_API_CALL KAS_GetExecutionLevel(void)
+ {
+ unsigned long ret;
++ preempt_disable();
+ ret = kas_GetExecutionLevel();
++ preempt_enable();
+ return ret;
+ }
+
+@@ -5022,8 +5026,10 @@ unsigned int ATI_API_CALL KAS_Ih_Execute
+ KCL_DEBUG5(FN_FIREGL_KAS,"0x%08X, 0x%08X\n", ih_routine, ih_context);
+
+ //Prevent simultaneous entry on some SMP systems.
++ preempt_disable();
+ if (test_and_set_bit(0, (void *)&(kasContext.in_interrupts[smp_processor_id()])))
+ {
++ preempt_enable();
+ KCL_DEBUG1(FN_FIREGL_KAS, "The processor is handling the interrupt\n");
+ return IRQ_NONE;
+ }
+@@ -5036,9 +5042,9 @@ unsigned int ATI_API_CALL KAS_Ih_Execute
+
+ kasSetExecutionLevel(orig_level);
+ spin_unlock(&kasContext.lock_ih);
+-
+ clear_bit(0, (void *)&(kasContext.in_interrupts[smp_processor_id()]));
+ KCL_DEBUG5(FN_FIREGL_KAS,"%d\n", ret);
++ preempt_enable();
+
+ return ret;
+ }
+@@ -5256,6 +5262,7 @@ unsigned int ATI_API_CALL KAS_Spinlock_A
+
+ KCL_DEBUG5(FN_FIREGL_KAS,"0x%08X\n", hSpinLock);
+
++ preempt_disable();
+ spin_lock_info.routine_type = spinlock_obj->routine_type;
+ spin_lock_info.plock = &(spinlock_obj->lock);
+
+@@ -5263,6 +5270,7 @@ unsigned int ATI_API_CALL KAS_Spinlock_A
+
+ spinlock_obj->acquire_type = spin_lock_info.acquire_type;
+ spinlock_obj->flags = spin_lock_info.flags;
++ preempt_enable();
+
+ KCL_DEBUG5(FN_FIREGL_KAS,"%d\n", ret);
+ return ret;
+@@ -6034,6 +6042,8 @@ unsigned int ATI_API_CALL KAS_Interlocke
+
+ KCL_DEBUG5(FN_FIREGL_KAS,"0x%08X, 0x%08X, 0x%08X\n", hListHead, hListEntry, phPrevEntry);
+
++ preempt_disable();
++
+ /* Protect the operation with spinlock */
+ spin_lock_info.routine_type = listhead_obj->routine_type;
+ spin_lock_info.plock = &(listhead_obj->lock);
+@@ -6041,6 +6051,7 @@ unsigned int ATI_API_CALL KAS_Interlocke
+ if (!kas_spin_lock(&spin_lock_info))
+ {
+ KCL_DEBUG_ERROR("Unable to grab list spinlock\n");
++ preempt_enable();
+ return 0; /* No spinlock - no operation */
+ }
+
+@@ -6065,6 +6076,7 @@ unsigned int ATI_API_CALL KAS_Interlocke
+ spin_unlock_info.flags = spin_lock_info.flags;
+
+ ret = kas_spin_unlock(&spin_unlock_info);
++ preempt_enable();
+ KCL_DEBUG5(FN_FIREGL_KAS,"%d", ret);
+ return ret;
+ }
+@@ -6153,8 +6165,10 @@ unsigned int ATI_API_CALL KAS_Interlocke
+ spin_lock_info.routine_type = listhead_obj->routine_type;
+ spin_lock_info.plock = &(listhead_obj->lock);
+
++ preempt_disable();
+ if (!kas_spin_lock(&spin_lock_info))
+ {
++ preempt_enable();
+ KCL_DEBUG_ERROR("Unable to grab list spinlock");
+ return 0; /* No spinlock - no operation */
+ }
+@@ -6178,6 +6192,7 @@ unsigned int ATI_API_CALL KAS_Interlocke
+ spin_unlock_info.flags = spin_lock_info.flags;
+
+ ret = kas_spin_unlock(&spin_unlock_info);
++ preempt_enable();
+ KCL_DEBUG5(FN_FIREGL_KAS,"%d", ret);
+ return ret;
+ }
diff --git a/pkgs/os-specific/linux/ati-drivers/patches/15.9-sep_printf.patch b/pkgs/os-specific/linux/ati-drivers/patches/15.9-sep_printf.patch
new file mode 100644
index 00000000000..3e4e8d6499a
--- /dev/null
+++ b/pkgs/os-specific/linux/ati-drivers/patches/15.9-sep_printf.patch
@@ -0,0 +1,11 @@
+--- a/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-09-14 15:14:36.000000000 -0400
++++ b/common/lib/modules/fglrx/build_mod/firegl_public.c 2015-09-14 16:18:58.000000000 -0400
+@@ -649,6 +649,8 @@ static int firegl_major_proc_read(struct
+ *eof = 1;
+
+ len = snprintf(buf, request, "%d\n", major);
++#elif LINUX_VERSION_CODE >= KERNEL_VERSION(4,3,0)
++ seq_printf(m, "%d\n", major);
+ #else
+ len = seq_printf(m, "%d\n", major);
+ #endif
diff --git a/pkgs/os-specific/linux/ati-drivers/patch-samples.patch b/pkgs/os-specific/linux/ati-drivers/patches/patch-samples.patch
similarity index 100%
rename from pkgs/os-specific/linux/ati-drivers/patch-samples.patch
rename to pkgs/os-specific/linux/ati-drivers/patches/patch-samples.patch
diff --git a/pkgs/os-specific/linux/facetimehd/default.nix b/pkgs/os-specific/linux/facetimehd/default.nix
index 06e6abfe417..3dc1e14e73d 100644
--- a/pkgs/os-specific/linux/facetimehd/default.nix
+++ b/pkgs/os-specific/linux/facetimehd/default.nix
@@ -6,13 +6,13 @@ assert stdenv.lib.versionAtLeast kernel.version "3.19";
stdenv.mkDerivation rec {
name = "facetimehd-${version}-${kernel.version}";
- version = "git-20160127";
+ version = "git-20160503";
src = fetchFromGitHub {
owner = "patjak";
repo = "bcwc_pcie";
- rev = "186e9f9101ed9bbd7cc8d470f840d4a74c585ca7";
- sha256 = "1frsf6z6v94cz9fww9rbnk926jzl36fp3w2d1aw6djhzwm80a5gs";
+ rev = "5a7083bd98b38ef3bd223f7ee531d58f4fb0fe7c";
+ sha256 = "0d455kajvn5xav9iilqy7s1qvsy4yb8vzjjxx7bvcgp7aj9ljvdp";
};
preConfigure = ''
diff --git a/pkgs/os-specific/linux/kernel/linux-4.4.nix b/pkgs/os-specific/linux/kernel/linux-4.4.nix
index bd7c7f636f8..e89a53d21bf 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.4.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.4.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
- version = "4.4.10";
+ version = "4.4.11";
extraMeta.branch = "4.4";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "1kpjvvd9q9wwr3314q5ymvxii4dv2d27295bzly225wlc552xhja";
+ sha256 = "1c0lqk2q4hf8jx6myhcqgh2509d36wx87l5k5cl3xfsnrzrpclrs";
};
kernelPatches = args.kernelPatches;
diff --git a/pkgs/os-specific/linux/kernel/linux-4.5.nix b/pkgs/os-specific/linux/kernel/linux-4.5.nix
index 09bd490ccfe..84d48865bcb 100644
--- a/pkgs/os-specific/linux/kernel/linux-4.5.nix
+++ b/pkgs/os-specific/linux/kernel/linux-4.5.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
- version = "4.5.4";
+ version = "4.5.5";
extraMeta.branch = "4.5";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "1s0mhhxx2sw93a9cin5mvjl82ah93a4sa2lfkvs6ay73mw3ifp2p";
+ sha256 = "0l7wnilqqhg3im2v04g6k2x621yckdb9bpfh8s8jq9l2fixjln99";
};
kernelPatches = args.kernelPatches;
diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix
index 09bd490ccfe..84d48865bcb 100644
--- a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix
+++ b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, perl, buildLinux, ... } @ args:
import ./generic.nix (args // rec {
- version = "4.5.4";
+ version = "4.5.5";
extraMeta.branch = "4.5";
src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
- sha256 = "1s0mhhxx2sw93a9cin5mvjl82ah93a4sa2lfkvs6ay73mw3ifp2p";
+ sha256 = "0l7wnilqqhg3im2v04g6k2x621yckdb9bpfh8s8jq9l2fixjln99";
};
kernelPatches = args.kernelPatches;
diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix
index 8e198e7a3ed..77d53bbf18d 100644
--- a/pkgs/os-specific/linux/kernel/patches.nix
+++ b/pkgs/os-specific/linux/kernel/patches.nix
@@ -95,9 +95,9 @@ rec {
grsecurity_4_5 = grsecPatch
{ kernel = pkgs.grsecurity_base_linux_4_5;
patches = [ grsecurity_fix_path_4_5 ];
- kversion = "4.5.4";
- revision = "201605131918";
- sha256 = "0f5s8lj6zc4jp2cpxm7r891px3dmb6m3ximfigwq809yydg5aimv";
+ kversion = "4.5.5";
+ revision = "201605211442";
+ sha256 = "15bg2j6y9jxjdcgxlbdj1g1wwf5afm3yzjczh79dj3v8z2hwz097";
};
grsecurity_latest = grsecurity_4_5;
diff --git a/pkgs/servers/rippled/ripple-rest.nix b/pkgs/servers/rippled/ripple-rest.nix
index 01fd098c920..3449645f185 100644
--- a/pkgs/servers/rippled/ripple-rest.nix
+++ b/pkgs/servers/rippled/ripple-rest.nix
@@ -22,5 +22,6 @@ in nodePackages.buildNodePackage rec {
homepage = https://github.com/ripple/ripple-rest;
maintainers = with maintainers; [ offline ];
license = [ licenses.mit ];
+ broken = true;
};
}
diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix
index e5558cfd37e..16fa2423a11 100644
--- a/pkgs/servers/x11/xorg/default.nix
+++ b/pkgs/servers/x11/xorg/default.nix
@@ -1811,11 +1811,11 @@ let
}) // {inherit fontsproto libpciaccess randrproto renderproto videoproto xextproto xorgserver xproto ;};
xf86videointel = (mkDerivation "xf86videointel" {
- name = "xf86-video-intel-2015-11-14";
+ name = "xf86-video-intel-2016-05-22";
builder = ./builder.sh;
src = fetchurl {
- url = http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/0340718366d7cb168a46930eb7be22f2d88354d8.tar.gz;
- sha256 = "0x11dig1wmpjz5n35sh30zs58ar8q8836w3zrkwkvgxj6q6smvvr";
+ url = http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/8477615ae1bd284aca1221185ffefe0630d3f7ab.tar.gz;
+ sha256 = "1fnwcsg2kr32nv9x6z671g6amwcyhba2392d63kjl2avjyhjad79";
};
buildInputs = [pkgconfig dri2proto dri3proto fontsproto libdrm libpng udev libpciaccess presentproto randrproto renderproto libX11 xcbutil libxcb libXcursor libXdamage libXext xextproto xf86driproto libXfixes xorgserver xproto libXrandr libXrender libxshmfence libXtst libXvMC ];
meta.platforms = stdenv.lib.platforms.unix;
@@ -1843,17 +1843,6 @@ let
meta.platforms = stdenv.lib.platforms.unix;
}) // {inherit fontsproto libdrm libpciaccess randrproto renderproto videoproto xextproto xf86driproto xorgserver xproto ;};
- xf86videomodesetting = (mkDerivation "xf86videomodesetting" {
- name = "xf86-video-modesetting-0.9.0";
- builder = ./builder.sh;
- src = fetchurl {
- url = mirror://xorg/individual/driver/xf86-video-modesetting-0.9.0.tar.bz2;
- sha256 = "0p6pjn5bnd2wr3lmas4b12zcq12d9ilvssga93fzlg90fdahikwh";
- };
- buildInputs = [pkgconfig fontsproto libdrm udev libpciaccess randrproto libX11 xextproto xorgserver xproto ];
- meta.platforms = stdenv.lib.platforms.unix;
- }) // {inherit fontsproto libdrm udev libpciaccess randrproto libX11 xextproto xorgserver xproto ;};
-
xf86videoneomagic = (mkDerivation "xf86videoneomagic" {
name = "xf86-video-neomagic-1.2.9";
builder = ./builder.sh;
@@ -2240,11 +2229,11 @@ let
}) // {inherit inputproto libX11 libXaw xproto libXt ;};
xkeyboardconfig = (mkDerivation "xkeyboardconfig" {
- name = "xkeyboard-config-2.16";
+ name = "xkeyboard-config-2.17";
builder = ./builder.sh;
src = fetchurl {
- url = mirror://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.16.tar.bz2;
- sha256 = "0n0xinsljc5mww1qw7dfp8knv0f1r9hs6pdhl0fggdwn5hhiz2hy";
+ url = mirror://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.17.tar.bz2;
+ sha256 = "00878f1v3034ki78pjpf2db0bh7jsmszsnxr3bf5qxripm2bxiny";
};
buildInputs = [pkgconfig libX11 xproto ];
meta.platforms = stdenv.lib.platforms.unix;
diff --git a/pkgs/servers/x11/xorg/tarballs-7.7.list b/pkgs/servers/x11/xorg/tarballs-7.7.list
index add6c99bb83..2ebf31918b8 100644
--- a/pkgs/servers/x11/xorg/tarballs-7.7.list
+++ b/pkgs/servers/x11/xorg/tarballs-7.7.list
@@ -144,7 +144,6 @@ mirror://xorg/individual/driver/xf86-video-i740-1.3.5.tar.bz2
mirror://xorg/individual/driver/xf86-video-intel-2.99.917.tar.bz2
mirror://xorg/individual/driver/xf86-video-mach64-6.9.5.tar.bz2
mirror://xorg/individual/driver/xf86-video-mga-1.6.4.tar.bz2
-mirror://xorg/individual/driver/xf86-video-modesetting-0.9.0.tar.bz2
mirror://xorg/individual/driver/xf86-video-qxl-0.1.3.tar.bz2
mirror://xorg/individual/driver/xf86-video-neomagic-1.2.9.tar.bz2
mirror://xorg/X11R7.7/src/everything/xf86-video-newport-0.2.4.tar.bz2
@@ -176,7 +175,7 @@ mirror://xorg/individual/app/xinput-1.6.2.tar.bz2
mirror://xorg/individual/app/xkbcomp-1.3.1.tar.bz2
mirror://xorg/individual/app/xkbevd-1.1.4.tar.bz2
mirror://xorg/individual/app/xkbutils-1.0.4.tar.bz2
-mirror://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.16.tar.bz2
+mirror://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.17.tar.bz2
mirror://xorg/individual/app/xkill-1.0.4.tar.bz2
mirror://xorg/individual/app/xlsatoms-1.1.2.tar.bz2
mirror://xorg/individual/app/xlsclients-1.1.3.tar.bz2
diff --git a/pkgs/stdenv/cygwin/rebase-i686.sh b/pkgs/stdenv/cygwin/rebase-i686.sh
index e5695c75a96..e97dc66c0ad 100644
--- a/pkgs/stdenv/cygwin/rebase-i686.sh
+++ b/pkgs/stdenv/cygwin/rebase-i686.sh
@@ -1,6 +1,9 @@
postFixupHooks+=(_cygwinFixAutoImageBase)
_cygwinFixAutoImageBase() {
+ if [ "$dontRebase" == 1 ]; then
+ return
+ fi
find $out -name "*.dll" | while read DLL; do
if [ -f /etc/rebasenix.nextbase ]; then
NEXTBASE="$( config.security.wrapperDir;
diff --git a/pkgs/tools/security/eid-mw/default.nix b/pkgs/tools/security/eid-mw/default.nix
index 23f10ba0750..5ee630539b6 100644
--- a/pkgs/tools/security/eid-mw/default.nix
+++ b/pkgs/tools/security/eid-mw/default.nix
@@ -4,10 +4,10 @@
stdenv.mkDerivation rec {
name = "eid-mw-${version}";
- version = "4.1.17";
+ version = "4.1.18";
src = fetchFromGitHub {
- sha256 = "11d4wafcbhamkqvcfqkpz1sq66jq7bxz07m777cqsnyibccns7q6";
+ sha256 = "049rxrlcwcb9yir8q2inmqlslp49alpgm4pccl138xl34cg1hyhl";
rev = "v${version}";
repo = "eid-mw";
owner = "Fedict";
diff --git a/pkgs/tools/security/john/default.nix b/pkgs/tools/security/john/default.nix
index 2e99208fe11..d428d67fdc9 100644
--- a/pkgs/tools/security/john/default.nix
+++ b/pkgs/tools/security/john/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, openssl, nss, nspr, kerberos, gmp, zlib, libpcap, re2
-, writeText
+, writeText, gcc
}:
with stdenv.lib;
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
preConfigure = "cd src";
configureFlags = [ "--disable-native-macro" ];
- buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 ];
+ buildInputs = [ openssl nss nspr kerberos gmp zlib libpcap re2 gcc ];
enableParallelBuilding = true;
NIX_CFLAGS_COMPILE = [ "-DJOHN_SYSTEMWIDE=1" ];
diff --git a/pkgs/tools/system/pciutils/default.nix b/pkgs/tools/system/pciutils/default.nix
index 7c236588544..622f5fc6cea 100644
--- a/pkgs/tools/system/pciutils/default.nix
+++ b/pkgs/tools/system/pciutils/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, pkgconfig, zlib, kmod, which }:
stdenv.mkDerivation rec {
- name = "pciutils-3.4.1"; # with database from 2016-01
+ name = "pciutils-3.5.1"; # with database from 2016-05
src = fetchurl {
url = "mirror://kernel/software/utils/pciutils/${name}.tar.xz";
- sha256 = "0am8hiv435h2dayclnkdk8qjlpj08m4djf6sv15n9l84av658mc6";
+ sha256 = "0byl2f897w5lhs4bvr6p7qwcz9bllj2zyfv7nywbcbsnb9ha9wrb";
};
buildInputs = [ pkgconfig zlib kmod which ];
diff --git a/pkgs/tools/text/xml/xml2/default.nix b/pkgs/tools/text/xml/xml2/default.nix
index 89d56e030e0..203f0940990 100644
--- a/pkgs/tools/text/xml/xml2/default.nix
+++ b/pkgs/tools/text/xml/xml2/default.nix
@@ -14,6 +14,7 @@ stdenv.mkDerivation rec {
homepage = http://ofb.net/~egnor/xml2/;
description = "Tools for command line processing of XML, HTML, and CSV";
license = licenses.gpl2Plus;
+ platforms = platforms.all;
maintainers = [ maintainers.rycee ];
};
}
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index d8c8341cb5a..fb1b3571e37 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -54,6 +54,7 @@ doNotDisplayTwice rec {
inotifyTools = inotify-tools;
joseki = apache-jena-fuseki; # added 2016-02-28
jquery_ui = jquery-ui; # added 2014-09-07
+ letsencrypt = certbot; # added 2016-05-16
libdbusmenu_qt5 = qt5.libdbusmenu; # added 2015-12-19
libcap_manpages = libcap.doc; # added 2016-04-29
libcap_pam = if stdenv.isLinux then libcap.pam else null; # added 2016-04-29
@@ -74,6 +75,7 @@ doNotDisplayTwice rec {
pidginlatexSF = pidginlatex; # added 2014-11-02
poppler_qt5 = qt5.poppler; # added 2015-12-19
qca-qt5 = qt5.qca-qt5; # added 2015-12-19
+ QmidiNet = qmidinet; # added 2016-05-22
quake3game = ioquake3; # added 2016-01-14
quassel_kf5 = kde5.quassel; # added 2015-09-30
quassel_qt5 = kde5.quassel_qt5; # added 2015-09-30
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index f165927f68a..bfbe5a0b322 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -455,7 +455,9 @@ in
atomicparsley = callPackage ../tools/video/atomicparsley { };
- attic = callPackage ../tools/backup/attic { };
+ attic = callPackage ../tools/backup/attic {
+ python3Packages = python34Packages;
+ };
avfs = callPackage ../tools/filesystems/avfs { };
@@ -614,7 +616,9 @@ in
bochs = callPackage ../applications/virtualization/bochs { };
- borgbackup = callPackage ../tools/backup/borg { };
+ borgbackup = callPackage ../tools/backup/borg {
+ python3Packages = python34Packages;
+ };
boomerang = callPackage ../development/tools/boomerang { };
@@ -793,6 +797,8 @@ in
fzf = goPackages.fzf.bin // { outputs = [ "bin" ]; };
+ fzy = callPackage ../tools/misc/fzy { };
+
gencfsm = callPackage ../tools/security/gencfsm { };
genromfs = callPackage ../tools/filesystems/genromfs { };
@@ -2097,7 +2103,9 @@ in
jnettop = callPackage ../tools/networking/jnettop { };
- john = callPackage ../tools/security/john { };
+ john = callPackage ../tools/security/john {
+ gcc = gcc49; # doesn't build with gcc5
+ };
jp2a = callPackage ../applications/misc/jp2a { };
@@ -2795,7 +2803,7 @@ in
pamtester = callPackage ../tools/security/pamtester { };
- paper-gtk-theme = callPackage ../misc/themes/gtk3/paper-gtk-theme { };
+ paper-gtk-theme = callPackage ../misc/themes/paper-gtk-theme { };
par2cmdline = callPackage ../tools/networking/par2cmdline { };
@@ -6648,6 +6656,8 @@ in
cegui = callPackage ../development/libraries/cegui {};
+ certbot = callPackage ../tools/admin/certbot { };
+
cgal = callPackage ../development/libraries/CGAL {};
cgui = callPackage ../development/libraries/cgui {};
@@ -7448,8 +7458,6 @@ in
libpng = libpng12;
};
- letsencrypt = callPackage ../tools/admin/letsencrypt { };
-
lib3ds = callPackage ../development/libraries/lib3ds { };
libaacs = callPackage ../development/libraries/libaacs { };
@@ -8607,6 +8615,8 @@ in
pcl = callPackage ../development/libraries/pcl {
vtk = vtkWithQt4;
+ inherit (darwin) cf-private;
+ inherit (darwin.apple_sdk.frameworks) Cocoa AGL;
};
pcre = callPackage ../development/libraries/pcre { };
@@ -11158,6 +11168,8 @@ in
s3ql = callPackage ../tools/backup/s3ql { };
+ sass = callPackage ../development/tools/sass { };
+
sassc = callPackage ../development/tools/sassc { };
scanmem = callPackage ../tools/misc/scanmem { };
@@ -11582,6 +11594,8 @@ in
opensans-ttf = callPackage ../data/fonts/opensans-ttf { };
+ paper-icon-theme = callPackage ../data/icons/paper-icon-theme { };
+
pecita = callPackage ../data/fonts/pecita {};
paratype-pt-mono = callPackage ../data/fonts/paratype-pt/mono.nix {};
@@ -12560,7 +12574,7 @@ in
};
wireshark-gtk = wireshark-cli.override { withGtk = true; };
wireshark-qt = wireshark-cli.override { withQt = true; };
- wireshark = wireshark-gtk;
+ wireshark = wireshark-qt;
wvdial = callPackage ../os-specific/linux/wvdial { };
@@ -12877,6 +12891,8 @@ in
hackrf = callPackage ../applications/misc/hackrf { };
+ hakuneko = callPackage ../tools/misc/hakuneko { };
+
hamster-time-tracker = callPackage ../applications/misc/hamster-time-tracker {
inherit (pythonPackages) pyxdg pygtk dbus sqlite3;
inherit (gnome) gnome_python;
@@ -13655,6 +13671,8 @@ in
paraview = callPackage ../applications/graphics/paraview { };
+ pbrt = callPackage ../applications/graphics/pbrt { };
+
pcsx2 = callPackage_i686 ../misc/emulators/pcsx2 { };
pencil = callPackage ../applications/graphics/pencil { };
@@ -13805,7 +13823,7 @@ in
qjackctl = callPackage ../applications/audio/qjackctl { };
- QmidiNet = callPackage ../applications/audio/QmidiNet { };
+ qmidinet = callPackage ../applications/audio/qmidinet { };
qmidiroute = callPackage ../applications/audio/qmidiroute { };
@@ -14203,7 +14221,7 @@ in
taskserver = callPackage ../servers/misc/taskserver { };
- tdesktop = qt55.callPackage ../applications/networking/instant-messengers/telegram/tdesktop { };
+ tdesktop = qt5.callPackage ../applications/networking/instant-messengers/telegram/tdesktop { };
telegram-cli = callPackage ../applications/networking/instant-messengers/telegram/telegram-cli { };
@@ -14396,6 +14414,7 @@ in
neovim = callPackage ../applications/editors/neovim {
inherit (lua52Packages) lpeg luaMessagePack luabitop;
+ python3Packages = python34Packages;
};
neovim-qt = callPackage ../applications/editors/neovim/qt.nix {
@@ -15705,7 +15724,7 @@ in
mate-themes = callPackage ../misc/themes/mate-themes { };
- numix-gtk-theme = callPackage ../misc/themes/gtk3/numix-gtk-theme { };
+ numix-gtk-theme = callPackage ../misc/themes/numix-gtk-theme { };
kde5PackagesFun = self: with self; {
@@ -16529,6 +16548,8 @@ in
m3d-linux = callPackage ../misc/drivers/m3d-linux { };
+ mnemonicode = callPackage ../misc/mnemonicode { };
+
mysqlWorkbench = newScope gnome ../applications/misc/mysql-workbench {
lua = lua5_1;
libctemplate = libctemplate_2_2;
diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix
index 283941b702f..4045ba841b2 100644
--- a/pkgs/top-level/go-packages.nix
+++ b/pkgs/top-level/go-packages.nix
@@ -875,10 +875,10 @@ let
};
flannel = buildFromGitHub {
- rev = "v0.5.3";
+ rev = "v0.5.5";
owner = "coreos";
repo = "flannel";
- sha256 = "0d9khv0bczvsaqnz16p546m4r5marmnkcrdhi0f3ajnwxb776r9p";
+ sha256 = "19nrilcc41411rag2qm22vdna4kpqm933ry9m82wkd7sqzb50fpw";
};
fsnotify.v1 = buildGoPackage rec {
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index 422b3b6e7da..e861ac37a90 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -3532,13 +3532,15 @@ let self = _self // overrides; _self = with self; {
};
DBIxClassCandy = buildPerlPackage rec {
- name = "DBIx-Class-Candy-0.005000";
+ name = "DBIx-Class-Candy-0.005002";
src = fetchurl {
url = "mirror://cpan/authors/id/F/FR/FREW/${name}.tar.gz";
- sha256 = "1gnc88ych9wc9x76y4305z8b06bw76a81d6v024mfalwy35kcfvw";
+ sha256 = "fb109e765674a52e9eac03f52403bb3cf717254b8b9fa46f06a6f205392f987d";
};
- propagatedBuildInputs = [ TestDeep TestFatal DBIxClass LinguaENInflect StringCamelCase ];
+ buildInputs = [ TestDeep TestFatal ];
+ propagatedBuildInputs = [ DBIxClass LinguaENInflect MROCompat StringCamelCase SubExporter namespaceclean ];
meta = {
+ homepage = https://github.com/frioux/DBIx-Class-Candy;
description = "Sugar for your favorite ORM, DBIx::Class";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
@@ -3568,24 +3570,25 @@ let self = _self // overrides; _self = with self; {
};
DBIxClassHelpers = buildPerlPackage rec {
- name = "DBIx-Class-Helpers-2.031000";
+ name = "DBIx-Class-Helpers-2.032001";
src = fetchurl {
url = "mirror://cpan/authors/id/F/FR/FREW/${name}.tar.gz";
- sha256 = "0vbq3jk8j5akivdpc1g07knx47id1ynb7bvk8a1ki8j1w4siq35i";
+ sha256 = "c7af96d17e11f0957b7187bb6002341a7b130bb79b61f6d91b39178ef000eff5";
};
- propagatedBuildInputs = [ aliased DBIxIntrospector DBIxClassCandy TestDeep
- CarpClan DBDSQLite SafeIsa TextBrew DateTime DateTimeFormatSQLite ];
+ buildInputs = [ DBDSQLite DateTimeFormatSQLite TestDeep TestFatal TestRoo aliased ];
+ propagatedBuildInputs = [ CarpClan DBIxClass DBIxClassCandy DBIxIntrospector LinguaENInflect ModuleRuntime Moo SafeIsa StringCamelCase SubExporterProgressive TextBrew TryTiny namespaceclean ];
meta = {
+ homepage = https://github.com/frioux/DBIx-Class-Helpers;
description = "Simplify the common case stuff for DBIx::Class";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
- DBIxClassIntrospectableM2M = buildPerlPackage {
- name = "DBIx-Class-IntrospectableM2M-0.001001";
+ DBIxClassIntrospectableM2M = buildPerlPackage rec {
+ name = "DBIx-Class-IntrospectableM2M-0.001002";
src = fetchurl {
- url = mirror://cpan/authors/id/G/GR/GRODITI/DBIx-Class-IntrospectableM2M-0.001001.tar.gz;
- sha256 = "0p9zx1yc1f6jg583l206wilsni2v8mlngc2vf2q8yn10pmy4y6wm";
+ url = "mirror://cpan/authors/id/I/IL/ILMARI/${name}.tar.gz";
+ sha256 = "c6baafb4241693fdb34b29ebd906993add364bf31aafa4462f3e062204cc87f0";
};
propagatedBuildInputs = [ DBIxClass ];
meta = {
@@ -4364,13 +4367,13 @@ let self = _self // overrides; _self = with self; {
};
EmailSender = buildPerlPackage rec {
- name = "Email-Sender-1.300021";
+ name = "Email-Sender-1.300028";
src = fetchurl {
url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz";
- sha256 = "f565ef5805ff54c5a77400b0a512709137092d247321bbe5065f265e2a7b4fed";
+ sha256 = "4a1cb9386a6b58b589b3183c807e533547a28e596fb15aa4cfd614947ad8ad30";
};
buildInputs = [ CaptureTiny ];
- propagatedBuildInputs = [ EmailAbstract EmailAddress EmailSimple ListMoreUtils Moo MooXTypesMooseLike SubExporterUtil Throwable ];
+ propagatedBuildInputs = [ libnet EmailAbstract EmailAddress EmailSimple ListMoreUtils ModuleRuntime Moo MooXTypesMooseLike SubExporter Throwable TryTiny ];
meta = {
homepage = https://github.com/rjbs/Email-Sender;
description = "A library for sending email";
@@ -4380,10 +4383,10 @@ let self = _self // overrides; _self = with self; {
};
EmailSimple = buildPerlPackage rec {
- name = "Email-Simple-2.208";
+ name = "Email-Simple-2.210";
src = fetchurl {
url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz";
- sha256 = "f13a83ecc41b4e72023066d865fc70dfbd85158d4e7722dca8249f54e0ec5be1";
+ sha256 = "c8633fa462538967c036e3077617de9e5e8f6acc68d25546ba1d5bb1e12bd319";
};
propagatedBuildInputs = [ EmailDateFormat ];
meta = {
@@ -5129,11 +5132,11 @@ let self = _self // overrides; _self = with self; {
};
};
- FilePath = buildPerlPackage {
- name = "File-Path-2.11";
+ FilePath = buildPerlPackage rec {
+ name = "File-Path-2.12";
src = fetchurl {
- url = mirror://cpan/authors/id/R/RI/RICHE/File-Path-2.11.tar.gz;
- sha256 = "d94492c072d08bdbbd40fd75a1010ff279e99333b63b4308b1f818fe6309dd0f";
+ url = "mirror://cpan/authors/id/R/RI/RICHE/${name}.tar.gz";
+ sha256 = "bbf61a0d37c135c694e80f4ea344932bdc5474c213025ae307ea52cb6886d17e";
};
meta = {
description = "Create or remove directory trees";
@@ -5263,7 +5266,11 @@ let self = _self // overrides; _self = with self; {
name = "File-Slurp-Tiny-0.004";
src = fetchurl {
url = "mirror://cpan/authors/id/L/LE/LEONT/${name}.tar.gz";
- sha256 = "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5";
+ sha256 = "452995beeabf0e923e65fdc627a725dbb12c9e10c00d8018c16d10ba62757f1e";
+ };
+ meta = {
+ description = "A simple, sane and efficient file slurper [DISCOURAGED]";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
@@ -6785,11 +6792,11 @@ let self = _self // overrides; _self = with self; {
};
};
- libnet = buildPerlPackage {
- name = "libnet-3.07";
+ libnet = buildPerlPackage rec {
+ name = "libnet-3.08";
src = fetchurl {
- url = mirror://cpan/authors/id/S/SH/SHAY/libnet-3.07.tar.gz;
- sha256 = "d9a23d8907e681e788a6f1a71915b1d37d057091e88049e5a4064c99ca2c9cd7";
+ url = "mirror://cpan/authors/id/S/SH/SHAY/${name}.tar.gz";
+ sha256 = "21ebae642b53336576c370989d238cbe74378944079aca6f97665158c9f1750b";
};
meta = {
description = "Collection of network protocol modules";
@@ -6820,30 +6827,36 @@ let self = _self // overrides; _self = with self; {
};
};
- LinguaENInflect = buildPerlPackage {
- name = "Lingua-EN-Inflect-1.895";
+ LinguaENInflect = buildPerlPackage rec {
+ name = "Lingua-EN-Inflect-1.899";
src = fetchurl {
- url = mirror://cpan/authors/id/D/DC/DCONWAY/Lingua-EN-Inflect-1.895.tar.gz;
- sha256 = "0drzg9a2dkjxgf00n6jg0jzhd8972bh3j4wdnmdxpqi3zmfqhwcy";
+ url = "mirror://cpan/authors/id/D/DC/DCONWAY/${name}.tar.gz";
+ sha256 = "1599a93020a2fdc0de8db14eea721df8fd772f78dedaf81081081fc93aa6a257";
};
meta = {
- description = "Convert singular to plural";
+ description = "Convert singular to plural. Select 'a' or 'an'";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
LinguaENInflectNumber = buildPerlPackage rec {
- name = "Lingua-EN-Inflect-Number-1.1";
+ name = "Lingua-EN-Inflect-Number-1.12";
src = fetchurl {
- url = "mirror://cpan/modules/by-module/Lingua/${name}.tar.gz";
- sha256 = "13hlr1srp9cd9mcc78snkng9il8iavvylfyh81iadvn2y7wikwfy";
+ url = "mirror://cpan/authors/id/N/NE/NEILB/${name}.tar.gz";
+ sha256 = "66fb33838512746f5c597e80264fea66643f7f26570ec2f9205b6135ad67acbf";
};
propagatedBuildInputs = [ LinguaENInflect ];
+ meta = {
+ homepage = https://github.com/neilbowers/Lingua-EN-Inflect-Number;
+ description = "Force number of words to singular or plural";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
};
- LinguaENInflectPhrase = buildPerlPackage {
+ LinguaENInflectPhrase = buildPerlPackage rec {
name = "Lingua-EN-Inflect-Phrase-0.18";
src = fetchurl {
- url = mirror://cpan/authors/id/R/RK/RKITOVER/Lingua-EN-Inflect-Phrase-0.18.tar.gz;
+ url = "mirror://cpan/authors/id/R/RK/RKITOVER/${name}.tar.gz";
sha256 = "290a5b8fc2be28d6d479517655027a90e944476cb3552f10cbf6db37af79f9a6";
};
buildInputs = [ TestNoWarnings ];
@@ -8862,11 +8875,11 @@ let self = _self // overrides; _self = with self; {
};
};
- MozillaCA = buildPerlPackage {
- name = "Mozilla-CA-20130114";
+ MozillaCA = buildPerlPackage rec {
+ name = "Mozilla-CA-20160104";
src = fetchurl {
- url = mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-20130114.tar.gz;
- sha256 = "82342614add1dbca8a00daa1ee55af3e0036245aed7d445537918c045008ccd7";
+ url = "mirror://cpan/authors/id/A/AB/ABH/${name}.tar.gz";
+ sha256 = "27a7069a243162b65ada4194ff9d21b6ebc304af723eb5d3972fb74c11b03f2a";
};
meta = {
description = "Mozilla's CA cert bundle in PEM format";
@@ -9107,22 +9120,32 @@ let self = _self // overrides; _self = with self; {
};
NetDBus = buildPerlPackage rec {
- name = "Net-DBus-1.0.0";
+ name = "Net-DBus-1.1.0";
src = fetchurl {
url = "mirror://cpan/authors/id/D/DA/DANBERR/${name}.tar.gz";
- sha256 = "03srw98nn7r4k6fmnr5bhwsxbhgrsmzdja98jl8b8a72iayg7l5z";
+ sha256 = "8391696db9e96c374b72984c0bad9c7d1c9f3b4efe68f9ddf429a77548e0e269";
};
+ buildInputs = [ TestPod TestPodCoverage ];
propagatedBuildInputs = [ pkgs.pkgconfig pkgs.dbus XMLTwig ];
+ meta = {
+ homepage = http://www.freedesktop.org/wiki/Software/dbus;
+ description = "Extension for the DBus bindings";
+ license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+ };
};
- NetDNS = buildPerlPackage {
- name = "Net-DNS-0.74";
+ NetDNS = buildPerlPackage rec {
+ name = "Net-DNS-1.05";
src = fetchurl {
- url = mirror://cpan/authors/id/N/NL/NLNETLABS/Net-DNS-0.74.tar.gz;
- sha256 = "0clwl4nqzg23d6l9d9gc8ijl1lbghhfrbavjlvhd1wll5r8ayr7g";
+ url = "mirror://cpan/authors/id/N/NL/NLNETLABS/${name}.tar.gz";
+ sha256 = "900198014110af96ebac34af019612dd2ddd6af30178600028c3c940d089d5c8";
+ };
+ propagatedBuildInputs = [ DigestHMAC ];
+ makeMakerFlags = "--noonline-tests";
+ meta = {
+ description = "Perl Interface to the Domain Name System";
+ license = stdenv.lib.licenses.mit;
};
- propagatedBuildInputs = [NetIP DigestHMAC];
- doCheck = false;
};
NetDomainTLD = buildPerlPackage rec {
@@ -9708,11 +9731,11 @@ let self = _self // overrides; _self = with self; {
};
};
- PerlIOutf8_strict = buildPerlModule {
- name = "PerlIO-utf8_strict-0.005";
+ PerlIOutf8_strict = buildPerlPackage rec {
+ name = "PerlIO-utf8_strict-0.006";
src = fetchurl {
- url = mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-0.005.tar.gz;
- sha256 = "8956064ac2bf1f79bac868a9db93a44aade77df4d3e8b07ce31a40f987ef2e0e";
+ url = "mirror://cpan/authors/id/L/LE/LEONT/${name}.tar.gz";
+ sha256 = "980010e624c43be0a2aac8e1fe5db3fe43035940def75ca70401bb1ca98bd562";
};
buildInputs = [ TestException ];
meta = {
@@ -9793,10 +9816,14 @@ let self = _self // overrides; _self = with self; {
};
PerlTidy = buildPerlPackage rec {
- name = "Perl-Tidy-20150815";
+ name = "Perl-Tidy-20160302";
src = fetchurl {
url = "mirror://cpan/authors/id/S/SH/SHANCOCK/${name}.tar.gz";
- sha256 = "1mzb2df3bhxcgm7i9vx29bz5581cr8bbfrmajjrzla04djg9v5ha";
+ sha256 = "6dd04ed8c315bcfea8fe713de8f9de68955795b6864f3be6c177e802fd30dca7";
+ };
+ meta = {
+ description = "Indent and reformat perl scripts";
+ license = stdenv.lib.licenses.gpl2Plus;
};
};
@@ -9935,11 +9962,11 @@ let self = _self // overrides; _self = with self; {
};
};
- PPIxRegexp = buildPerlPackage {
- name = "PPIx-Regexp-0.036";
+ PPIxRegexp = buildPerlPackage rec {
+ name = "PPIx-Regexp-0.050";
src = fetchurl {
- url = mirror://cpan/authors/id/W/WY/WYANT/PPIx-Regexp-0.036.tar.gz;
- sha256 = "1nnaxf1dmywacdgh8f1s2ki8jkrf2vi6bfhk70p1r9k1001idlfk";
+ url = "mirror://cpan/authors/id/W/WY/WYANT/${name}.tar.gz";
+ sha256 = "fd095fb90826efa3f9b28bf018a099dc51f1d7c7d34ed2f193a28f1087635125";
};
propagatedBuildInputs = [ ListMoreUtils PPI TaskWeaken ];
meta = {
@@ -10027,42 +10054,43 @@ let self = _self // overrides; _self = with self; {
};
};
- PerlMinimumVersion = buildPerlPackage {
- name = "Perl-MinimumVersion-1.32";
+ PerlMinimumVersion = buildPerlPackage rec {
+ name = "Perl-MinimumVersion-1.38";
src = fetchurl {
- url = mirror://cpan/authors/id/C/CH/CHORNY/Perl-MinimumVersion-1.32.tar.gz;
- sha256 = "fa9884abee80c7afc260a28a4e6a6804a0335f5f582e3931c3a53b8504f1a27a";
+ url = "mirror://cpan/authors/id/N/NE/NEILB/${name}.tar.gz";
+ sha256 = "478b5824791b87fc74c94a892180682bd06ad2cdf34034b1a4b859273927802a";
};
buildInputs = [ TestScript ];
propagatedBuildInputs = [ FileFindRule FileFindRulePerl PPI PPIxRegexp ParamsUtil PerlCritic ];
meta = {
+ homepage = https://github.com/neilbowers/Perl-MinimumVersion;
description = "Find a minimum required version of perl for Perl code";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
- PerlPrereqScanner = buildPerlPackage {
- name = "Perl-PrereqScanner-1.019";
+ PerlPrereqScanner = buildPerlPackage rec {
+ name = "Perl-PrereqScanner-1.023";
src = fetchurl {
- url = mirror://cpan/authors/id/R/RJ/RJBS/Perl-PrereqScanner-1.019.tar.gz;
- sha256 = "1ndgq2c7s1042c3zxjsmjfpf4lnwfg6w36hmvhh3yk9qihcprbgj";
+ url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz";
+ sha256 = "280a1c4710390865fb9f310a861a34720b28b4cbe50609c841af5cf2d3a2bced";
};
buildInputs = [ PPI TryTiny ];
propagatedBuildInputs = [ GetoptLongDescriptive ListMoreUtils ModulePath Moose PPI ParamsUtil StringRewritePrefix namespaceautoclean ];
meta = {
- homepage = https://github.com/rjbs/perl-prereqscanner;
+ homepage = https://github.com/rjbs/Perl-PrereqScanner;
description = "A tool to scan your Perl code for its prerequisites";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
};
- PerlVersion = buildPerlPackage {
- name = "Perl-Version-1.011";
+ PerlVersion = buildPerlPackage rec {
+ name = "Perl-Version-1.013";
src = fetchurl {
- url = mirror://cpan/authors/id/A/AN/ANDYA/Perl-Version-1.011.tar.gz;
- sha256 = "12ede8a87a12574fcd525c1d23d8a5b2fa2918ff5b78eb56cf701251a81af19b";
+ url = "mirror://cpan/authors/id/B/BD/BDFOY/${name}.tar.gz";
+ sha256 = "1887414d1c8689d864c840114101e043e99d7dd5b9cca69369a60e821e3ad0f7";
};
- propagatedBuildInputs = [ FileSlurp ];
+ propagatedBuildInputs = [ FileSlurpTiny ];
meta = {
description = "Parse and manipulate Perl version strings";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
@@ -12741,11 +12769,11 @@ let self = _self // overrides; _self = with self; {
};
};
- TextCSV_XS = buildPerlPackage {
- name = "Text-CSV_XS-1.19.tgz";
+ TextCSV_XS = buildPerlPackage rec {
+ name = "Text-CSV_XS-1.23";
src = fetchurl {
- url = mirror://cpan/authors/id/H/HM/HMBRAND/Text-CSV_XS-1.19.tgz;
- sha256 = "bcde887f613c6a50b0ce8f714cd2463570f5809f26581615690cfb424d2a7c16";
+ url = "mirror://cpan/authors/id/H/HM/HMBRAND/${name}.tgz";
+ sha256 = "5714e1c275e7715aee44f820f8ca26c976fbb563668de7eba42a4419a05a4b5a";
};
meta = {
homepage = https://metacpan.org/pod/Text::CSV_XS;
@@ -12832,15 +12860,16 @@ let self = _self // overrides; _self = with self; {
};
};
- TestMinimumVersion = buildPerlPackage {
- name = "Test-MinimumVersion-0.101081";
+ TestMinimumVersion = buildPerlPackage rec {
+ name = "Test-MinimumVersion-0.101082";
src = fetchurl {
- url = mirror://cpan/authors/id/R/RJ/RJBS/Test-MinimumVersion-0.101081.tar.gz;
- sha256 = "1javb92s0bl7gj2m3fsvzd0mn5r76clmayq8878mq12g4smdvpi2";
+ url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz";
+ sha256 = "3fba4e8fcf74806259aa639be7d90e70346ad0e0e4b8b619593490e378241970";
};
buildInputs = [ TestTester ];
- propagatedBuildInputs = [ FileFindRule FileFindRulePerl PerlMinimumVersion YAMLTiny ];
+ propagatedBuildInputs = [ FileFindRule FileFindRulePerl PerlMinimumVersion ];
meta = {
+ homepage = https://github.com/rjbs/Test-MinimumVersion;
description = "Does your code require newer perl than you think?";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
};
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 9ce75da5daa..0be4ffff90d 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -247,6 +247,8 @@ in modules // {
pygame = callPackage ../development/python-modules/pygame { };
+ pygame-git = callPackage ../development/python-modules/pygame/git.nix { };
+
pygobject = callPackage ../development/python-modules/pygobject { };
pygobject3 = callPackage ../development/python-modules/pygobject/3.nix { };
@@ -370,8 +372,29 @@ in modules // {
};
};
+ acme_0_5_0 = buildPythonPackage rec {
+ version = "0.5.0";
+ name = "acme-${version}";
+
+ src = pkgs.fetchFromGitHub {
+ owner = "letsencrypt";
+ repo = "letsencrypt";
+ rev = "v${version}";
+ sha256 = "0x098cdyfgqvh7x5d3sz56qjpjyg5b4fl82086sm43d8mbz0h5rm";
+ };
+
+ propagatedBuildInputs = with self; [
+ cryptography pyasn1 pyopenssl pyRFC3339 pytz requests2 six werkzeug mock
+ ndg-httpsclient
+ ];
+
+ buildInputs = with self; [ nose ];
+
+ sourceRoot = "letsencrypt-v${version}-src/acme";
+ };
+
acme = buildPythonPackage rec {
- inherit (pkgs.letsencrypt) src version;
+ inherit (pkgs.certbot) src version;
name = "acme-${version}";
@@ -8433,7 +8456,7 @@ in modules // {
};
propagatedBuildInputs = with self; [
- pyGtkGlade pkgs.libtorrentRasterbar twisted Mako chardet pyxdg self.pyopenssl modules.curses
+ pyGtkGlade pkgs.libtorrentRasterbar twisted Mako chardet pyxdg self.pyopenssl modules.curses service-identity
];
nativeBuildInputs = [ pkgs.intltool ];
@@ -27229,6 +27252,28 @@ in modules // {
};
};
+ Keras = buildPythonPackage rec {
+ name = "Keras-${version}";
+ version = "1.0.3";
+ disabled = isPy3k;
+
+ src = pkgs.fetchurl {
+ url = "mirror://pypi/k/keras/${name}.tar.gz";
+ sha256 = "0wi826bvifvy12w490ghj1g45z5xb83q2cadqh425sg56p98khaq";
+ };
+
+ propagatedBuildInputs = with self; [
+ six Theano pyyaml
+ ];
+
+ meta = {
+ description = "Deep Learning library for Theano and TensorFlow";
+ homepage = "https://keras.io";
+ license = licenses.mit;
+ maintainers = with maintainers; [ NikolaMandic ];
+ };
+ };
+
sigtools = buildPythonPackage rec {
name = "sigtools-${version}";
version = "1.1a3";