Merge branch 'master' into staging

This commit is contained in:
Domen Kožar 2015-11-11 12:53:36 +01:00
commit 505117f3fb
182 changed files with 11579 additions and 1124 deletions

View File

@ -244,6 +244,7 @@
rob = "Rob Vermaas <rob.vermaas@gmail.com>";
robberer = "Longrin Wischnewski <robberer@freakmail.de>";
robbinch = "Robbin C. <robbinch33@gmail.com>";
robgssp = "Rob Glossop <robgssp@gmail.com>";
roconnor = "Russell O'Connor <roconnor@theorem.ca>";
roelof = "Roelof Wobben <rwobben@hotmail.com>";
romildo = "José Romildo Malaquias <malaquias@gmail.com>";
@ -262,6 +263,7 @@
simonvandel = "Simon Vandel Sillesen <simon.vandel@gmail.com>";
sjagoe = "Simon Jagoe <simon@simonjagoe.com>";
sjmackenzie = "Stewart Mackenzie <setori88@gmail.com>";
sjourdois = "Stéphane kwisatz Jourdois <sjourdois@gmail.com>";
skeidel = "Sven Keidel <svenkeidel@gmail.com>";
smironov = "Sergey Mironov <ierton@gmail.com>";
spacefrogg = "Michael Raitza <spacefrogg-nixos@meterriblecrew.net>";

View File

@ -74,6 +74,23 @@ in
'';
};
consoleColors = mkOption {
type = types.listOf types.str;
default = [];
example = [
"002b36" "dc322f" "859900" "b58900"
"268bd2" "d33682" "2aa198" "eee8d5"
"002b36" "cb4b16" "586e75" "657b83"
"839496" "6c71c4" "93a1a1" "fdf6e3"
];
description = ''
The 16 colors palette used by the virtual consoles.
Leave empty to use the default colors.
Colors must be in hexadecimal format and listed in
order from color 0 to color 15.
'';
};
};
};

View File

@ -441,6 +441,7 @@
./system/activation/top-level.nix
./system/boot/coredump.nix
./system/boot/emergency-mode.nix
./system/boot/initrd-network.nix
./system/boot/kernel.nix
./system/boot/kexec.nix
./system/boot/loader/efi.nix

View File

@ -6,7 +6,12 @@ let
cfg = config.services.tlp;
tlp = pkgs.tlp.override { kmod = config.system.sbin.modprobe; };
enableRDW = config.networking.networkmanager.enable;
tlp = pkgs.tlp.override {
inherit enableRDW;
kmod = config.system.sbin.modprobe;
};
# XXX: We can't use writeTextFile + readFile here because it triggers
# TLP build to get the .drv (even on --dry-run).
@ -90,13 +95,15 @@ in
environment.etc = [{ source = confFile;
target = "default/tlp";
}
] ++ optional tlp.enableRDW {
] ++ optional enableRDW {
source = "${tlp}/etc/NetworkManager/dispatcher.d/99tlp-rdw-nm";
target = "NetworkManager/dispatcher.d/99tlp-rdw-nm";
};
environment.systemPackages = [ tlp ];
boot.kernelModules = [ "msr" ];
};
}

View File

@ -11,6 +11,8 @@ let
mainCf =
''
compatibility_level = 2
queue_directory = /var/postfix/queue
command_directory = ${pkgs.postfix}/sbin
daemon_directory = ${pkgs.postfix}/libexec/postfix
@ -31,10 +33,7 @@ let
mynetworks_style = ${cfg.networksStyle}
''
else
# Postfix default is subnet, but let's play safe
''
mynetworks_style = host
'')
"")
+ optionalString (cfg.hostname != "") ''
myhostname = ${cfg.hostname}
''
@ -89,7 +88,7 @@ let
masterCf = ''
# ==========================================================================
# service type private unpriv chroot wakeup maxproc command + args
# (yes) (yes) (yes) (never) (100)
# (yes) (yes) (no) (never) (100)
# ==========================================================================
smtp inet n - n - - smtpd
#submission inet n - n - - smtpd
@ -232,8 +231,7 @@ in
default = null;
example = ["localdomain"];
description = "
List of domains we agree to relay to. Default is the same as
destination.
List of domains we agree to relay to. Default is empty.
";
};
@ -357,23 +355,20 @@ in
}
];
jobs.postfix =
# I copy _lots_ of shipped configuration filed
# that can be left as is. I am afraid the exact
# will list slightly change in next Postfix
# release, so listing them all one-by-one in an
# accurate way is unlikely to be better.
systemd.services.postfix =
{ description = "Postfix mail server";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
daemonType = "fork";
serviceConfig = {
Type = "forking";
Restart = "always";
PIDFile = "/var/postfix/queue/pid/master.pid";
};
preStart = ''
if ! [ -d /var/spool/postfix ]; then
${pkgs.coreutils}/bin/mkdir -p /var/spool/mail /var/postfix/conf /var/postfix/queue
fi
${pkgs.coreutils}/bin/mkdir -p /var/spool/mail /var/postfix/conf /var/postfix/queue
${pkgs.coreutils}/bin/chown -R ${user}:${group} /var/postfix
${pkgs.coreutils}/bin/chown -R ${user}:${setgidGroup} /var/postfix/queue
@ -382,7 +377,7 @@ in
${pkgs.coreutils}/bin/chmod a+rwxt /var/spool/mail
${pkgs.coreutils}/bin/ln -sf /var/spool/mail /var/
ln -sf "${pkgs.postfix}/etc/postfix/"* /var/postfix/conf
ln -sf ${pkgs.postfix}/etc/postfix/postfix-files /var/postfix/conf
ln -sf ${aliasesFile} /var/postfix/conf/aliases
ln -sf ${virtualFile} /var/postfix/conf/virtual
@ -391,12 +386,18 @@ in
${pkgs.postfix}/sbin/postalias -c /var/postfix/conf /var/postfix/conf/aliases
${pkgs.postfix}/sbin/postmap -c /var/postfix/conf /var/postfix/conf/virtual
'';
script = ''
${pkgs.postfix}/sbin/postfix -c /var/postfix/conf start
'';
reload = ''
${pkgs.postfix}/sbin/postfix -c /var/postfix/conf reload
'';
preStop = ''
${pkgs.postfix}/sbin/postfix -c /var/postfix/conf stop
${pkgs.postfix}/sbin/postfix -c /var/postfix/conf stop
'';
};

View File

@ -14,9 +14,10 @@ let
plugins=keyfile
[keyfile]
${optionalString (config.networking.hostName != "") ''
hostname=${config.networking.hostName}
''}
${optionalString (config.networking.hostName != "")
''hostname=${config.networking.hostName}''}
${optionalString (cfg.unmanaged != [])
''unmanaged-devices=${lib.concatStringsSep ";" cfg.unmanaged}''}
[logging]
level=WARN
@ -98,6 +99,16 @@ in {
'';
};
unmanaged = mkOption {
type = types.listOf types.string;
default = [];
description = ''
List of interfaces that will not be managed by NetworkManager.
Interface name can be specified here, but if you need more fidelity
see "Device List Format" in NetworkManager.conf man page.
'';
};
# Ugly hack for using the correct gnome3 packageSet
basePackages = mkOption {
type = types.attrsOf types.path;

View File

@ -23,11 +23,11 @@ in
'';
};
interface = mkOption {
default = "127.0.0.1";
interfaces = mkOption {
default = [ "127.0.0.1" ];
description = ''
The interface the Quassel daemon will be listening to. If `127.0.0.1',
only clients on the local host can connect to it; if `0.0.0.0', clients
The interfaces the Quassel daemon will be listening to. If `[ 127.0.0.1 ]',
only clients on the local host can connect to it; if `[ 0.0.0.0 ]', clients
can access it from any network interface.
'';
};
@ -88,7 +88,7 @@ in
serviceConfig =
{
ExecStart = "${quassel}/bin/quasselcore --listen=${cfg.interface} --port=${toString cfg.portNumber} --configdir=${cfg.dataDir}";
ExecStart = "${quassel}/bin/quasselcore --listen=${concatStringsSep '','' cfg.interfaces} --port=${toString cfg.portNumber} --configdir=${cfg.dataDir}";
User = user;
PermissionsStartOnly = true;
};

View File

@ -63,7 +63,7 @@ in
});
default = [
{
host = "www.ptb.de";
host = "encrypted.google.com";
port = 443;
proxy = null;
}

View File

@ -22,14 +22,16 @@ in {
latitude = mkOption {
type = types.str;
description = ''
Your current latitude.
Your current latitude, between
<literal>-90.0</literal> and <literal>90.0</literal>.
'';
};
longitude = mkOption {
type = types.str;
description = ''
Your current longitude.
Your current longitude, between
between <literal>-180.0</literal> and <literal>180.0</literal>.
'';
};
@ -38,14 +40,16 @@ in {
type = types.int;
default = 5500;
description = ''
Colour temperature to use during the day.
Colour temperature to use during the day, between
<literal>1000</literal> and <literal>25000</literal> K.
'';
};
night = mkOption {
type = types.int;
default = 3700;
description = ''
Colour temperature to use at night.
Colour temperature to use at night, between
<literal>1000</literal> and <literal>25000</literal> K.
'';
};
};

View File

@ -0,0 +1,31 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.xserver.windowManager.clfswm;
in
{
options = {
services.xserver.windowManager.clfswm = {
enable = mkOption {
type = types.bool;
default = false;
example = true;
description = "Enable the clfswm tiling window manager.";
};
};
};
config = mkIf cfg.enable {
services.xserver.windowManager.session = singleton {
name = "clfswm";
start = ''
${pkgs.clfswm}/bin/clfswm &
waitPID=$!
'';
};
environment.systemPackages = [ pkgs.clfswm ];
};
}

View File

@ -10,6 +10,7 @@ in
imports = [
./afterstep.nix
./bspwm.nix
./clfswm.nix
./compiz.nix
./fluxbox.nix
./herbstluftwm.nix

View File

@ -0,0 +1,149 @@
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.boot.initrd.network;
in
{
options = {
boot.initrd.network.enable = mkOption {
type = types.bool;
default = false;
description = ''
Add network connectivity support to initrd.
Network options are configured via <literal>ip</literal> kernel
option, according to the kernel documentation.
'';
};
boot.initrd.network.ssh.enable = mkOption {
type = types.bool;
default = false;
description = ''
Start SSH service during initrd boot. It can be used to debug failing
boot on a remote server, enter pasphrase for an encrypted partition etc.
Service is killed when stage-1 boot is finished.
'';
};
boot.initrd.network.ssh.port = mkOption {
type = types.int;
default = 22;
description = ''
Port on which SSH initrd service should listen.
'';
};
boot.initrd.network.ssh.shell = mkOption {
type = types.str;
default = "/bin/ash";
description = ''
Login shell of the remote user. Can be used to limit actions user can do.
'';
};
boot.initrd.network.ssh.hostRSAKey = mkOption {
type = types.nullOr types.path;
default = null;
description = ''
RSA SSH private key file in the Dropbear format.
WARNING: This key is contained insecurely in the global Nix store. Do NOT
use your regular SSH host private keys for this purpose or you'll expose
them to regular users!
'';
};
boot.initrd.network.ssh.hostDSSKey = mkOption {
type = types.nullOr types.path;
default = null;
description = ''
DSS SSH private key file in the Dropbear format.
WARNING: This key is contained insecurely in the global Nix store. Do NOT
use your regular SSH host private keys for this purpose or you'll expose
them to regular users!
'';
};
boot.initrd.network.ssh.hostECDSAKey = mkOption {
type = types.nullOr types.path;
default = null;
description = ''
ECDSA SSH private key file in the Dropbear format.
WARNING: This key is contained insecurely in the global Nix store. Do NOT
use your regular SSH host private keys for this purpose or you'll expose
them to regular users!
'';
};
boot.initrd.network.ssh.authorizedKeys = mkOption {
type = types.listOf types.str;
default = config.users.extraUsers.root.openssh.authorizedKeys.keys;
description = ''
Authorized keys for the root user on initrd.
'';
};
};
config = mkIf cfg.enable {
boot.initrd.kernelModules = [ "af_packet" ];
boot.initrd.extraUtilsCommands = ''
copy_bin_and_libs ${pkgs.mkinitcpio-nfs-utils}/bin/ipconfig
'' + optionalString cfg.ssh.enable ''
copy_bin_and_libs ${pkgs.dropbear}/bin/dropbear
cp -pv ${pkgs.glibc}/lib/libnss_files.so.* $out/lib
'';
boot.initrd.extraUtilsCommandsTest = optionalString cfg.ssh.enable ''
$out/bin/dropbear -V
'';
boot.initrd.postEarlyDeviceCommands = ''
# Search for interface definitions in command line
for o in $(cat /proc/cmdline); do
case $o in
ip=*)
ipconfig $o && hasNetwork=1
;;
esac
done
'' + optionalString cfg.ssh.enable ''
if [ -n "$hasNetwork" ]; then
mkdir /dev/pts
mount -t devpts devpts /dev/pts
mkdir -p /etc
echo 'root:x:0:0:root:/root:${cfg.ssh.shell}' > /etc/passwd
echo '${cfg.ssh.shell}' > /etc/shells
echo 'passwd: files' > /etc/nsswitch.conf
mkdir -p /var/log
touch /var/log/lastlog
mkdir -p /etc/dropbear
${optionalString (cfg.ssh.hostRSAKey != null) "ln -s ${cfg.ssh.hostRSAKey} /etc/dropbear/dropbear_rsa_host_key"}
${optionalString (cfg.ssh.hostDSSKey != null) "ln -s ${cfg.ssh.hostDSSKey} /etc/dropbear/dropbear_dss_host_key"}
${optionalString (cfg.ssh.hostECDSAKey != null) "ln -s ${cfg.ssh.hostECDSAKey} /etc/dropbear/dropbear_ecdsa_host_key"}
mkdir -p /root/.ssh
${concatStrings (map (key: ''
echo -n ${escapeShellArg key} >> /root/.ssh/authorized_keys
'') cfg.ssh.authorizedKeys)}
dropbear -s -j -k -E -m -p ${toString cfg.ssh.port}
fi
'';
};
}

View File

@ -32,9 +32,12 @@ let
''}
open_normally() {
cryptsetup luksOpen ${device} ${name} ${optionalString allowDiscards "--allow-discards"} \
echo luksOpen ${device} ${name} ${optionalString allowDiscards "--allow-discards"} \
${optionalString (header != null) "--header=${header}"} \
${optionalString (keyFile != null) "--key-file=${keyFile} ${optionalString (keyFileSize != null) "--keyfile-size=${toString keyFileSize}"}"}
${optionalString (keyFile != null) "--key-file=${keyFile} ${optionalString (keyFileSize != null) "--keyfile-size=${toString keyFileSize}"}"} \
> /.luksopen_args
cryptsetup-askpass
rm /.luksopen_args
}
${optionalString (luks.yubikeySupport && (yubikey != null)) ''
@ -418,6 +421,18 @@ in
boot.initrd.extraUtilsCommands = ''
copy_bin_and_libs ${pkgs.cryptsetup}/bin/cryptsetup
cat > $out/bin/cryptsetup-askpass <<EOF
#!$out/bin/sh -e
if [ -e /.luksopen_args ]; then
cryptsetup \$(cat /.luksopen_args)
killall cryptsetup
else
echo "Passphrase is not requested now"
exit 1
fi
EOF
chmod +x $out/bin/cryptsetup-askpass
${optionalString luks.yubikeySupport ''
copy_bin_and_libs ${pkgs.ykpers}/bin/ykchalresp
copy_bin_and_libs ${pkgs.ykpers}/bin/ykinfo
@ -432,6 +447,8 @@ in
cat > $out/bin/openssl-wrap <<EOF
#!$out/bin/sh
export OPENSSL_CONF=$out/etc/ssl/openssl.cnf
$out/bin/openssl "\$@"
EOF
chmod +x $out/bin/openssl-wrap
''}
@ -442,11 +459,6 @@ in
${optionalString luks.yubikeySupport ''
$out/bin/ykchalresp -V
$out/bin/ykinfo -V
cat > $out/bin/openssl-wrap <<EOF
#!$out/bin/sh
export OPENSSL_CONF=$out/etc/ssl/openssl.cnf
$out/bin/openssl "\$@"
EOF
$out/bin/openssl-wrap version
''}
'';

View File

@ -149,6 +149,10 @@ udevadm trigger --action=add
udevadm settle
# Additional devices initialization.
@postEarlyDeviceCommands@
# Load boot-time keymap before any LVM/LUKS initialization
@extraUtils@/bin/busybox loadkmap < "@busyboxKeymap@"

View File

@ -104,7 +104,7 @@ let
stripDirs "lib bin" "-s"
# Run patchelf to make the programs refer to the copied libraries.
for i in $out/bin/* $out/lib/*; do if ! test -L $i; then nuke-refs $i; fi; done
for i in $out/bin/* $out/lib/*; do if ! test -L $i; then nuke-refs -e $out $i; fi; done
for i in $out/bin/*; do
if ! test -L $i; then
@ -203,7 +203,7 @@ let
inherit (config.boot) resumeDevice devSize runSize;
inherit (config.boot.initrd) checkJournalingFS
preLVMCommands postDeviceCommands postMountCommands kernelModules;
postEarlyDeviceCommands preLVMCommands postDeviceCommands postMountCommands kernelModules;
resumeDevices = map (sd: if sd ? device then sd.device else "/dev/disk/by-label/${sd.label}")
(filter (sd: (sd ? label || hasPrefix "/dev/" sd.device) && !sd.randomEncryption) config.swapDevices);
@ -313,6 +313,14 @@ in
'';
};
boot.initrd.postEarlyDeviceCommands = mkOption {
default = "";
type = types.lines;
description = ''
Shell commands to be executed early after creation of device nodes.
'';
};
boot.initrd.postMountCommands = mkOption {
default = "";
type = types.lines;

View File

@ -4,11 +4,13 @@ with lib;
let
makeColor = n: value: "COLOR_${toString n}=${value}";
vconsoleConf = pkgs.writeText "vconsole.conf"
''
KEYMAP=${config.i18n.consoleKeyMap}
FONT=${config.i18n.consoleFont}
'';
'' + concatImapStringsSep "\n" makeColor config.i18n.consoleColors;
in

View File

@ -111,5 +111,8 @@ in
};
networking.interfaces.vboxnet0.ip4 = [ { address = "192.168.56.1"; prefixLength = 24; } ];
# Make sure NetworkManager won't assume this interface being up
# means we have internet access.
networking.networkmanager.unmanaged = ["vboxnet0"];
})]);
}

View File

@ -1,40 +0,0 @@
{ fetchzip, stdenv, pkgconfig
, openssl, db48, boost, zlib, miniupnpc, qt4, qrencode, glib, protobuf
, utillinux
, withGui }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "darkcoin" + (toString (optional (!withGui) "d")) + "-" + version;
version = "0.10.99.99";
src = fetchzip {
url = "https://github.com/darkcoin/darkcoin/archive/v${version}.tar.gz";
sha256 = "0sigvimqwc1mvaq43a8c2aq7fjla2ncafrals08qfq3jd6in8b4f";
};
buildInputs = [ pkgconfig glib openssl db48 boost zlib miniupnpc ]
++ optionals withGui [ qt4 qrencode ];
configurePhase = optional withGui "qmake";
preBuild = optional (!withGui) "cd src; cp makefile.unix Makefile";
installPhase =
if withGui
then "install -D darkcoin-qt $out/bin/darkcoin-qt"
else "install -D darkcoind $out/bin/darkcoind";
meta = with stdenv.lib; {
description = "A decentralized key/value registration and transfer system";
longDescription = ''
Darkcoin (DRK) is an open sourced, privacy-centric digital
currency. It allows you keep your finances private as you make
transactions, similar to cash.
'';
homepage = http://darkcoin.io;
maintainers = with maintainers; [ AndersonTorres ];
platforms = with platforms; unix;
};
}

View File

@ -0,0 +1,33 @@
{ fetchzip, stdenv, pkgconfig, autoreconfHook
, openssl, db48, boost, zlib, miniupnpc
, qt4, qrencode, glib, protobuf, yasm
, utillinux }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "dashpay-${meta.version}";
src = fetchzip {
url = "https://github.com/dashpay/dash/archive/v${meta.version}.tar.gz";
sha256 = "19bk7cviy3n2dpj4kr3i6i0i3ac2l5ri8ln1a51nd3n90k016wnx";
};
buildInputs = [ pkgconfig autoreconfHook glib openssl db48 yasm
boost zlib miniupnpc protobuf qt4 qrencode utillinux ];
configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" ];
meta = with stdenv.lib; {
version = "0.12.0.55";
description = "A decentralized key/value registration and transfer system";
longDescription = ''
Dash (DASH) is an open sourced, privacy-centric digital currency
with instant transactions. It allows you to keep your finances
private as you make transactions without waits, similar to cash.
'';
homepage = http://dashpay.io;
maintainers = with maintainers; [ AndersonTorres ];
platforms = with platforms; unix;
};
}

View File

@ -8,8 +8,7 @@ rec {
bitcoin-xt = callPackage ./bitcoin-xt.nix { withGui = true; };
bitcoind-xt = callPackage ./bitcoin-xt.nix { withGui = false; };
darkcoin = callPackage ./darkcoin.nix { withGui = true; };
darkcoind = callPackage ./darkcoin.nix { withGui = false; };
dashpay = callPackage ./dashpay.nix { };
dogecoin = callPackage ./dogecoin.nix { withGui = true; };
dogecoind = callPackage ./dogecoin.nix { withGui = false; };

View File

@ -0,0 +1,55 @@
{ stdenv, fetchurl, lib
, pkgconfig, intltool, autoconf, makeWrapper
, glib, dbus, gtk3, libdbusmenu-gtk3, libappindicator-gtk3, gst_all_1
, pulseaudioSupport ? true, libpulseaudio ? null }:
with lib;
stdenv.mkDerivation rec {
name = "audio-recorder-${version}";
version = "1.7-5";
src = fetchurl {
name = "${name}-wily.tar.gz";
url = "${meta.homepage}/+archive/ubuntu/ppa/+files/audio-recorder_${version}%7Ewily.tar.gz";
sha256 = "1cdlqhfqw2mg51f068j2lhn8mzxggzsbl560l4pl4fxgmpjywpkj";
};
nativeBuildInputs = [ pkgconfig intltool autoconf makeWrapper ];
buildInputs = with gst_all_1; [
glib dbus gtk3 libdbusmenu-gtk3 libappindicator-gtk3
gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav
] ++ optional pulseaudioSupport libpulseaudio;
postPatch = ''
substituteInPlace configure.ac \
--replace 'PKG_CHECK_MODULES(GIO, gio-2.0 >= $GLIB_REQUIRED)' \
'PKG_CHECK_MODULES(GIO, gio-2.0 >= $GLIB_REQUIRED gio-unix-2.0)'
autoconf
intltoolize
'';
postFixup = ''
wrapProgram $out/bin/audio-recorder \
--prefix XDG_DATA_DIRS : "$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 ":" "$GST_PLUGIN_SYSTEM_PATH_1_0"
'';
meta = with stdenv.lib; {
description = "Audio recorder for GNOME and Unity Desktops";
longDescription = ''
This program allows you to record your favourite music or audio to a file.
It can record audio from your system soundcard, microphones, browsers and
webcams. Put simply; if it plays out of your loudspeakers you can record it.
This program has a timer that can start, stop or pause recording on certain
conditions such as audio level, file size and clock time. This recorder can
automatically record your Skype calls. It supports several audio (output)
formats such as OGG audio, Flac, MP3 and WAV.
'';
homepage = https://launchpad.net/~audio-recorder;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.msteen ];
};
}

View File

@ -0,0 +1,73 @@
{ stdenv, fetchurl, flex, bison, pkgconfig, zlib, libtiff, libpng, fftw
, cairo, readline, ffmpeg, makeWrapper, wxGTK30, netcdf, blas
, proj, gdal, geos, sqlite, postgresql, mysql, pythonPackages
}:
stdenv.mkDerivation {
name = "grass-7.0.1";
src = fetchurl {
url = http://grass.osgeo.org/grass70/source/grass-7.0.1.tar.gz;
sha256 = "0ps0xfsgls1hai8fx8x74ajh3560p1yjql2sg02lpqpx30bdv1q9";
};
buildInputs = [ flex bison zlib proj gdal libtiff libpng fftw sqlite pkgconfig cairo
readline ffmpeg makeWrapper wxGTK30 netcdf geos postgresql mysql.lib blas ]
++ (with pythonPackages; [ python dateutil wxPython30 numpy sqlite3 ]);
configureFlags = [
"--with-proj-share=${proj}/share/proj"
"--without-opengl"
"--with-readline"
"--with-wxwidgets"
"--with-netcdf"
"--with-geos"
"--with-postgres"
"--with-mysql" "--with-mysql-includes=${mysql.lib}/include/mysql"
"--with-blas"
];
/* Ensures that the python script run at build time are actually executable;
* otherwise, patchShebangs ignores them. */
postConfigure = ''
chmod +x scripts/d.out.file/d.out.file.py \
scripts/d.to.rast/d.to.rast.py \
scripts/d.what.rast/d.what.rast.py \
scripts/d.what.vect/d.what.vect.py \
scripts/g.extension/g.extension.py \
scripts/g.extension.all/g.extension.all.py \
scripts/r.pack/r.pack.py \
scripts/r.tileset/r.tileset.py \
scripts/r.unpack/r.unpack.py \
scripts/v.krige/v.krige.py \
scripts/v.rast.stats/v.rast.stats.py \
scripts/v.to.lines/v.to.lines.py \
scripts/v.what.strds/v.what.strds.py \
scripts/v.unpack/v.unpack.py \
scripts/wxpyimgview/*.py \
gui/wxpython/animation/g.gui.animation.py \
gui/wxpython/rlisetup/g.gui.rlisetup.py \
gui/wxpython/vdigit/g.gui.vdigit.py \
temporal/t.rast.accumulate/t.rast.accumulate.py \
temporal/t.rast.accdetect/t.rast.accdetect.py \
temporal/t.select/t.select.py
for d in gui lib scripts temporal tools; do
patchShebangs $d
done
'';
postInstall = ''
wrapProgram $out/bin/grass70 \
--set PYTHONPATH $PYTHONPATH \
--set GRASS_PYTHON ${pythonPackages.python}/bin/${pythonPackages.python.executable}
ln -s $out/grass-*/lib $out/lib
'';
enableParallelBuilding = true;
meta = {
homepage = http://grass.osgeo.org/;
description = "GIS software suite used for geospatial data management and analysis, image processing, graphics and maps production, spatial modeling, and visualization";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.all;
};
}

View File

@ -1,11 +1,14 @@
{ stdenv, fetchurl, gdal, cmake, qt4, flex, bison, proj, geos, xlibsWrapper, sqlite, gsl,
qwt, fcgi, pythonPackages, libspatialindex, libspatialite, qscintilla, postgresql, makeWrapper }:
{ stdenv, fetchurl, gdal, cmake, qt4, flex, bison, proj, geos, xlibsWrapper, sqlite, gsl
, qwt, fcgi, pythonPackages, libspatialindex, libspatialite, qscintilla, postgresql, makeWrapper
, withGrass ? false, grass
}:
stdenv.mkDerivation rec {
name = "qgis-2.10.1";
buildInputs = [ gdal qt4 flex bison proj geos xlibsWrapper sqlite gsl qwt qscintilla
fcgi libspatialindex libspatialite postgresql ] ++
(stdenv.lib.optional withGrass grass) ++
(with pythonPackages; [ numpy psycopg2 ]) ++ [ pythonPackages.qscintilla ];
nativeBuildInputs = [ cmake makeWrapper ];
@ -24,6 +27,8 @@ stdenv.mkDerivation rec {
sha256 = "79119b54642edaffe3cda513531eb7b81913e013954a49c6d3b21c8b00143307";
};
cmakeFlags = stdenv.lib.optional withGrass "-DGRASS_PREFIX7=${grass}/${grass.name}";
postInstall = ''
wrapProgram $out/bin/qgis \
--prefix PYTHONPATH : $PYTHONPATH

View File

@ -1,35 +1,28 @@
{stdenv, fetchurl, libX11, libXinerama, enableXft, libXft, zlib}:
with stdenv.lib;
{stdenv, fetchurl, libX11, libXinerama, libXft, zlib}:
stdenv.mkDerivation rec {
name = "dmenu-4.5";
name = "dmenu-4.6";
src = fetchurl {
url = "http://dl.suckless.org/tools/${name}.tar.gz";
sha256 = "0l58jpxrr80fmyw5pgw5alm5qry49aw6y049745wl991v2cdcb08";
sha256 = "1cwnvamqqlgczvd5dv5rsgqbhv8kp0ddjnhmavb3q732i8028yja";
};
xftPatch = fetchurl {
url = "http://tools.suckless.org/dmenu/patches/${name}-xft.diff";
sha256 = "efb4095d65e5e86f9dde97294732174409c24f319bdd4824cc22fa1404972b4f";
};
buildInputs = [ libX11 libXinerama ] ++ optionals enableXft [zlib libXft];
patches = optional enableXft xftPatch;
buildInputs = [ libX11 libXinerama zlib libXft ];
postPatch = ''
sed -ri -e 's!\<(dmenu|stest)\>!'"$out/bin"'/&!g' dmenu_run
'';
preConfigure = [ ''sed -i "s@PREFIX = /usr/local@PREFIX = $out@g" config.mk'' ];
preConfigure = ''
sed -i "s@PREFIX = /usr/local@PREFIX = $out@g" config.mk
'';
meta = {
description = "a generic, highly customizable, and efficient menu for the X Window System";
meta = with stdenv.lib; {
description = "A generic, highly customizable, and efficient menu for the X Window System";
homepage = http://tools.suckless.org/dmenu;
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; all;
license = licenses.mit;
maintainers = with maintainers; [ viric pSub ];
platforms = platforms.all;
};
}

View File

@ -1,190 +0,0 @@
{ config, libXmu, libXext, libXp, libX11, libXt, libSM, libICE, libXpm
, libXaw, libXrender
, composableDerivation, stdenv, fetchurl
, lib, flex, bison, cairo, fontconfig
, gdal, zlib, ncurses, gdbm, proj, pkgconfig, swig
, blas, liblapack, libjpeg, libpng, mysql, unixODBC, mesa, postgresql, python
, readline, sqlite, tcl, tk, libtiff, freetype, makeWrapper, wxGTK, ffmpeg, fftw
, wxPython, motif, opendwg }@a:
# You can set gui by exporting GRASS_GUI=..
# see http://grass.itc.it/gdp/html_grass64/g.gui.html
# defaulting to wxpython because this is used in the manual
let inherit (builtins) getAttr;
inherit (a.composableDerivation) edf wwf;
inherit (a.stdenv.lib) maybeAttr optionalString;
# wrapper for wwf call
# lib: the lib whose include and lib paths should be passed
# {}@args: additional args being merged before passing everything to wwf
wwfp = lib: {name, ...}@args:
let mbEnable = maybeAttr "enable" {} args;
in wwf (args // {
enable = mbEnable // {
buildInputs = [ lib ]
++ maybeAttr "buildInputs" [] mbEnable;
configureFlags = [
"--with-${name}-libs=${lib}/lib"
"--with-${name}-includes=${lib}/include"
] ++ maybeAttr "configureFlags" [] mbEnable;
};
});
in
a.composableDerivation.composableDerivation {} (fix: {
name = "grass-6.4.0RC6";
buildInputs = [
# gentoos package depends on gmath ?
a.pkgconfig
a.flex a.bison a.libXmu a.libXext a.libXp a.libX11 a.libXt a.libSM a.libICE
a.libXpm a.libXaw a.flex a.bison a.gdbm
a.makeWrapper
];
cfg = {
_64bitSupport = config.grass."64bitSupport" or true;
cursesSupport = config.grass.curses or true;
gdalSupport = config.grass.gdal or true;
pythonSupport = config.grass.python or true;
wxwidgetsSupport = config.grass.wxwidgets or true;
readlineSupport = config.grass.readline or true;
jpegSupport = config.grass.jpeg or true;
tiffSupport = config.grass.tiff or true;
pngSupport = config.grass.png or true;
tcltkSupport = config.grass.tcltk or true;
postgresSupport = config.grass.postgres or true;
mysqlSupport = config.grass.mysql or true;
sqliteSupport = config.grass.sqlite or true;
ffmpegSupport = config.grass.ffmpeg or true;
openglSupport = config.grass.opengl or true;
odbcSupport = config.grass.odbc or false; # fails to find libodbc - why ?
fftwSupport = config.grass.fftw or true;
blasSupport = config.grass.blas or true;
lapackSupport = config.grass.lapack or true;
cairoSupport = config.grass.cairo or true;
motifSupport = config.grass.motif or true;
freetypeSupport = config.grass.freetype or true;
projSupport = config.grass.proj or true;
opendwgSupport = config.grass.dwg or false;
largefileSupport = config.grass.largefile or true;
};
# ?? NLS support: no
# ?? GLw support: no
# ?? DWG support: no
flags = {
python = {
configureFlags = [ "--with-python=${a.python}/bin/python-config" ];
buildInputs = [a.python a.swig];
};
}
// edf { name = "_64bit"; feat = "64bit"; }
// wwfp a.ncurses { name = "curses"; }
// wwfp a.gdal { name = "gdal"; }
// wwfp a.wxGTK { name = "wxwidgets"; value = "${a.wxGTK}/bin/wx-config"; }
// wwfp a.readline { name = "readline"; }
// wwfp a.libjpeg { name = "jpeg"; }
// wwfp a.libtiff { name = "tiff"; }
// wwfp a.libpng { name = "png"; }
// wwfp a.tk { name = "tcltk"; enable.buildInputs = [ a.tcl ]; }
// wwfp a.postgresql { name = "postgres"; }
// wwf {
name = "mysql";
enable = {
buildInputs = [ a.mysql.lib ];
configureFlags = [
"--with-mysql-libs=${a.mysql.lib}/lib/mysql"
"--with-mysql-includes=${a.mysql.lib}/include/mysql"
];
};
}
// wwfp a.sqlite { name = "sqlite"; }
// wwf {
name = "ffmpeg";
enable = {
configureFlags = [
"--with-ffmpeg-libs=${a.ffmpeg}/lib"
"--with-ffmpeg-includes=${a.ffmpeg}/include"
];
# is there a nicer way to pass additional include directories?
# this should work: --with-ffmpeg-includes=/usr/include/lib[av|sw]*
# I did not try
preConfigure = ''
for dir in ${a.ffmpeg}/include/*; do
if [ -d $dir ]; then
NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I$dir"
fi
done
'';
buildInputs = [a.ffmpeg];
};
}
// wwfp a.mesa { name = "opengl"; }
// wwfp a.unixODBC { name = "odbc"; }
// wwfp a.fftw { name = "fftw"; }
// wwf {
name = "blas";
enable.configureFlags = [ "--with-blas-libs=${a.blas}/lib" ];
}
// wwf {
name = "lapack";
enable.configureFlags = [ "--with-lapack-libs=${a.liblapack}/lib" ];
}
// wwfp a.cairo {
name = "cairo";
enable.buildInputs = [ a.fontconfig a.libXrender ];
}
// wwfp a.motif { name = "motif"; }
// wwf {
name="freetype";
enable = {
buildInputs = [ a.freetype ];
configureFlags = [
"--with-freetype-libs=${a.freetype}/lib"
"--with-freetype-includes=${a.freetype}/include/freetype2"
];
};
}
// wwfp a.proj { name = "proj"; enable.configureFlags = [ "--with-proj-share=${a.proj}/share"]; }
// wwfp a.opendwg { name = "opendwg"; }
// edf {
name = "largefile";
};
/* ?
// wwf {
name = "x";
enable.buildInputs = [];
};
*/
src = a.fetchurl {
url = "http://grass.itc.it/grass64/source/grass-6.4.0RC6.tar.gz";
sha256 = "043cxa224rd4q1x2mq7sl7ylnxv2vvb4k8laycgcjnp60nzhlmaz";
};
postInstall = ''
e=$(echo $out/bin/grass*)
mv $out/bin/{,.}$(basename $e)
cat >> $e << EOF
#!/bin/sh
export PATH=${a.python}/bin:\$PATH
export GRASS_WISH=\${a.tk}/bin/wish
export GRASS_GUI=\''${GRASS_GUI:-wxpython}
export SHELL=/bin/sh
${optionalString fix.fixed.cfg.wxwidgetsSupport ''export PYTHONPATH=\$PYTHONPATH\''${PYTHONPATH:+:}:$(toPythonPath ${a.wxPython})''}
exec $out/bin/.$(basename $e)
EOF
chmod +x $e
'';
meta = {
description = "free Geographic Information System (GIS) software used for geospatial data management and analysis, image processing, graphics/maps production, spatial modeling, and visualization";
homepage = http://grass.itc.it/index.php;
license = "GPL";
broken = true;
};
})

View File

@ -1,11 +1,11 @@
{ stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, wxGTK, desktop_file_utils, libSM, imagemagick }:
stdenv.mkDerivation rec {
version = "0.7.78";
version = "0.7.79";
name = "mediainfo-gui-${version}";
src = fetchurl {
url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
sha256 = "0458rxla3nhw9rbb2psak8qvxwr0drfhdl82k6wvb3a38xb0qij3";
sha256 = "0qwb3msw9gfzdymlirpvzah0lcszc2p67jg8k5ca2camymnfcvx3";
};
buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo wxGTK desktop_file_utils libSM imagemagick ];

View File

@ -1,11 +1,11 @@
{ stdenv, fetchurl, automake, autoconf, libtool, pkgconfig, libzen, libmediainfo, zlib }:
stdenv.mkDerivation rec {
version = "0.7.78";
version = "0.7.79";
name = "mediainfo-${version}";
src = fetchurl {
url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz";
sha256 = "0458rxla3nhw9rbb2psak8qvxwr0drfhdl82k6wvb3a38xb0qij3";
sha256 = "0qwb3msw9gfzdymlirpvzah0lcszc2p67jg8k5ca2camymnfcvx3";
};
buildInputs = [ automake autoconf libtool pkgconfig libzen libmediainfo zlib ];

View File

@ -20,10 +20,10 @@ let
patches = optional jackSupport ./mumble-jack-support.patch;
nativeBuildInputs = [ pkgconfig ]
++ { qt4 = [ qt4 ]; qt5 = [ qt5.base ]; }."qt${toString source.qtVersion}"
++ { qt4 = [ qt4 ]; qt5 = [ qt5.qtbase ]; }."qt${toString source.qtVersion}"
++ (overrides.nativeBuildInputs or [ ]);
buildInputs = [ boost protobuf avahi ]
++ { qt4 = [ qt4 ]; qt5 = [ qt5.base ]; }."qt${toString source.qtVersion}"
++ { qt4 = [ qt4 ]; qt5 = [ qt5.qtbase ]; }."qt${toString source.qtVersion}"
++ (overrides.buildInputs or [ ]);
configureFlags = [
@ -66,9 +66,9 @@ let
client = source: generic {
type = "mumble";
nativeBuildInputs = optional (source.qtVersion == 5) qt5.tools;
nativeBuildInputs = optional (source.qtVersion == 5) qt5.qttools;
buildInputs = [ libopus libsndfile speex ]
++ optional (source.qtVersion == 5) qt5.svg
++ optional (source.qtVersion == 5) qt5.qtsvg
++ optional stdenv.isLinux alsaLib
++ optional jackSupport libjack2
++ optional speechdSupport speechd
@ -116,13 +116,13 @@ let
};
gitSource = rec {
version = "1.3.0-git-2015-09-27";
version = "1.3.0-git-2015-11-08";
qtVersion = 5;
src = fetchgit {
url = "https://github.com/mumble-voip/mumble";
rev = "13e494c60beb20748eeb8be126b27e1226d168c8";
sha256 = "1vihassis5i7hyljbb8qjihjj4y80n5l380x5dl0nwb55j2mylhg";
rev = "72038f6aa038f5964e2bba5a09d3d391d4680e5f";
sha256 = "03978b85f7y0bffl8vwkmakjnxxjqapfz3pn0b8zf3b1ppwjy9g4";
};
# TODO: Remove fetchgit as it requires git

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec
{
version = "4.0.6";
version = "4.4.2";
name = "seafile-client-${version}";
src = fetchurl
{
url = "https://github.com/haiwen/seafile-client/archive/v${version}.tar.gz";
sha256 = "0hx8zjmgj4ki2p5fkdyz32fy8db60p6rvi3my9l59j7fslv71k1z";
sha256 = "0aj39xiayibxp3vcrwi58pn51h9vcsy2z04q8jm17qadmk9dzyw6";
};
buildInputs = [ pkgconfig cmake qt4 seafile-shared makeWrapper ];

View File

@ -1,5 +1,5 @@
{ stdenv, fetchurl, ncurses, asciidoc, xmlto, docbook_xsl, docbook_xml_dtd_45
, readline, makeWrapper, git
, readline, makeWrapper, git, libiconv
}:
stdenv.mkDerivation rec {
@ -10,7 +10,8 @@ stdenv.mkDerivation rec {
sha256 = "0bw5wivswwh7vx897q8xc2cqgkqhdzk8gh6fnav2kf34sngigiah";
};
buildInputs = [ ncurses asciidoc xmlto docbook_xsl readline git makeWrapper ];
buildInputs = [ ncurses asciidoc xmlto docbook_xsl readline git makeWrapper ]
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv ];
preConfigure = ''
export XML_CATALOG_FILES='${docbook_xsl}/xml/xsl/docbook/catalog.xml ${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml'

View File

@ -44,6 +44,7 @@ in
license = stdenv.lib.licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ bobvanderlinden ];
broken = true; # popcorntime.io is dead
};
}
''

View File

@ -0,0 +1,24 @@
{ stdenv, fetchurl, cmake }:
stdenv.mkDerivation rec {
version = "0.8.3";
name = "tini-${version}";
src = fetchurl {
url = "https://github.com/krallin/tini/archive/v0.8.3.tar.gz";
sha256 ="1w7rj4crrcyv25idmh4asbp2sxzwyihy5mbpw384bzxjzaxn9xpa";
};
NIX_CFLAGS_COMPILE = [
"-DPR_SET_CHILD_SUBREAPER=36"
"-DPR_GET_CHILD_SUBREAPER=37"
];
buildInputs = [ cmake ];
postInstall = ''
rm $out/bin/tini-static
'';
meta = with stdenv.lib; {
description = "A tiny but valid init for containers";
homepage = https://github.com/krallin/tini;
license = licenses.mit;
platforms = platforms.linux;
};
}

View File

@ -0,0 +1,44 @@
{ stdenv, pkgs, fetchgit, autoconf, sbcl, lispPackages, xdpyinfo, texinfo4
, makeWrapper , rlwrap, gnused, gnugrep, coreutils, xprop
, extraModulePaths ? [] }:
stdenv.mkDerivation rec {
name = "clfswm";
src = fetchgit {
url = "https://gitlab.common-lisp.net/clfswm/clfswm.git";
rev = "refs/heads/master";
sha256 = "1hkm6bn5xww932w34l13bg87m5hsnwnd0i1lka6sw0cq8whndya0";
};
buildInputs = [
texinfo4 makeWrapper autoconf
sbcl
lispPackages.clx
lispPackages.cl-ppcre
xdpyinfo
];
patches = [ ./require-clx.patch ];
# Stripping destroys the generated SBCL image
dontStrip = true;
installPhase = ''
mkdir -pv $out/bin
make DESTDIR=$out install
# Paths in the compressed image $out/bin/clfswm are not
# recognized by Nix. Add explicit reference here.
mkdir $out/nix-support
echo ${xdpyinfo} ${lispPackages.clx} ${lispPackages.cl-ppcre} > $out/nix-support/depends
'';
meta = with stdenv.lib; {
description = "A(nother) Common Lisp FullScreen Window Manager";
homepage = https://common-lisp.net/project/clfswm/;
license = licenses.gpl3;
maintainers = with maintainers; [ robgssp ];
platforms = platforms.linux;
};
}

View File

@ -0,0 +1,13 @@
diff --git a/load.lisp b/load.lisp
index c8c4cf0..8c9ca2e 100644
--- a/load.lisp
+++ b/load.lisp
@@ -111,6 +111,8 @@ from $XDG_CONFIG_HOME/clfswm/clfswmrc")
;;;------------------
(load-info "Requiring CLX")
+(require 'clx)
+
;;; Loading clisp dynamic module. This part needs clisp >= 2.50
;;#+(AND CLISP (not CLX))
;;(when (fboundp 'require)

View File

@ -54,8 +54,8 @@ let
etcProfile = nixpkgs.writeText "profile" ''
export PS1='${name}-chrootenv:\u@\h:\w\$ '
export LOCALE_ARCHIVE='/usr/lib${if isMultiBuild then "64" else ""}/locale/locale-archive'
export LD_LIBRARY_PATH=/run/opengl-driver/lib:/run/opengl-driver-32/lib:/lib:/lib64
export LOCALE_ARCHIVE='/usr/lib/locale/locale-archive'
export LD_LIBRARY_PATH='/run/opengl-driver/lib:/run/opengl-driver-32/lib:/usr/lib:/usr/lib32'
export PATH='/usr/bin:/usr/sbin'
${profile}
'';
@ -129,7 +129,7 @@ let
setupLibDirs_multi = ''
mkdir -m0755 lib32
mkdir -m0755 lib64
ln -s lib32 lib
ln -s lib64 lib
# copy glibc stuff
cp -rsHf ${staticUsrProfileTarget}/lib/32/* lib32/ && chmod u+w -R lib32/
@ -149,6 +149,9 @@ let
# copy gcc libs
cp -rsHf ${chosenGcc.cc}/lib/* lib32/
cp -rsHf ${chosenGcc.cc}/lib64/* lib64/
# symlink 32-bit ld-linux.so
ln -s ${staticUsrProfileTarget}/lib/32/ld-linux.so.2 lib/
'';
setupLibDirs = if isTargetBuild then setupLibDirs_target

View File

@ -3,11 +3,26 @@ source $stdenv/setup
mkdir -p $out/bin
cat > $out/bin/nuke-refs <<EOF
#! $SHELL -e
for i in \$*; do
if test ! -L \$i -a -f \$i; then
cat \$i | sed "s|$NIX_STORE/[a-z0-9]*-|$NIX_STORE/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-|g" > \$i.tmp
if test -x \$i; then chmod +x \$i.tmp; fi
mv \$i.tmp \$i
excludes=""
while getopts e: o; do
case "\$o" in
e) storeId=\$(echo "\$OPTARG" | sed -n "s|^$NIX_STORE/\\([a-z0-9]\{32\}\\)-.*|\1|p")
if [ -z "\$storeId" ]; then
echo "-e argument must be a Nix store path"
exit 1
fi
excludes="\$excludes(?!\$storeId)"
;;
esac
done
shift \$((\$OPTIND-1))
for i in "\$@"; do
if test ! -L "\$i" -a -f "\$i"; then
cat "\$i" | $perl/bin/perl -pe "s|$NIX_STORE/\$excludes[a-z0-9]{32}-|$NIX_STORE/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-|g" > "\$i.tmp"
if test -x "\$i"; then chmod +x "\$i.tmp"; fi
mv "\$i.tmp" "\$i"
fi
done
EOF

View File

@ -3,9 +3,10 @@
# path (/nix/store/eeee...). This is useful for getting rid of
# dependencies that you know are not actually needed at runtime.
{stdenv}:
{ stdenv, perl }:
stdenv.mkDerivation {
name = "nuke-references";
builder = ./builder.sh;
}
inherit perl;
}

View File

@ -4,15 +4,17 @@
stdenv.mkDerivation rec {
name = "fsharp-${version}";
version = "3.1.2.5";
version = "4.0.0.4";
src = fetchurl {
url = "https://github.com/fsharp/fsharp/archive/${version}.tar.gz";
sha256 = "1j6lnzvhj8fj1csb9am9xcrmmph6v3jyangkq8n1yp3dr6yxqzh1";
sha256 = "1m9pwr4xjl3ikaf3pzsa4pb3pr533xa0v34y2cy4pjcc6j0f71av";
};
buildInputs = [ mono pkgconfig dotnetbuildhelpers autoconf automake which ];
configurePhase = ''
sed -i '988d' src/FSharpSource.targets
substituteInPlace ./autogen.sh --replace "/usr/bin/env sh" "/bin/sh"
./autogen.sh --prefix $out
'';

View File

@ -63,9 +63,15 @@ stdenv.mkDerivation rec {
'' + lib.optionalString stdenv.isDarwin ''
sed -i 's,"/etc","'"$TMPDIR"'",' src/os/os_test.go
sed -i 's,/_go_os_test,'"$TMPDIR"'/_go_os_test,' src/os/path_test.go
sed -i '/TestCgoLookupIP/areturn' src/net/cgo_unix_test.go
sed -i '/TestChdirAndGetwd/areturn' src/os/os_test.go
sed -i '/TestDialDualStackLocalhost/areturn' src/net/dial_test.go
sed -i '/TestRead0/areturn' src/os/os_test.go
sed -i '/TestSystemRoots/areturn' src/crypto/x509/root_darwin_test.go
sed -i '/TestDialDualStackLocalhost/areturn' src/net/dial_test.go
# fails when running inside tmux
sed -i '/TestNohup/areturn' src/os/signal/signal_test.go
# remove IP resolving tests, on darwin they can find fe80::1%lo while expecting ::1
sed -i '/TestResolveIPAddr/areturn' src/net/ipraw_test.go

View File

@ -74,9 +74,14 @@ stdenv.mkDerivation rec {
sed -i 's,strings.Contains(.*sysctl.*,true {,' src/cmd/dist/util.go
sed -i 's,"/etc","'"$TMPDIR"'",' src/os/os_test.go
sed -i 's,/_go_os_test,'"$TMPDIR"'/_go_os_test,' src/os/path_test.go
sed -i '/TestCgoLookupIP/areturn' src/net/cgo_unix_test.go
sed -i '/TestChdirAndGetwd/areturn' src/os/os_test.go
sed -i '/TestRead0/areturn' src/os/os_test.go
sed -i '/TestSystemRoots/areturn' src/crypto/x509/root_darwin_test.go
sed -i '/TestGoInstallRebuildsStalePackagesInOtherGOPATH/areturn' src/cmd/go/go_test.go
sed -i '/TestBuildDashIInstallsDependencies/areturn' src/cmd/go/go_test.go
sed -i '/TestDisasmExtld/areturn' src/cmd/objdump/objdump_test.go
touch $TMPDIR/group $TMPDIR/hosts $TMPDIR/passwd

View File

@ -6,10 +6,10 @@ let
in
stdenv.mkDerivation rec {
name = "mono-${version}";
version = "4.0.3.20";
version = "4.0.4.1";
src = fetchurl {
url = "http://download.mono-project.com/sources/mono/${name}.tar.bz2";
sha256 = "1z0k8gv5z3yrkjhi2yjaqj42p55jn5h3q4z890gkcrlvmgihnv4p";
sha256 = "1ydw9l89apc9p7xr5mdzy0h97g2q6v243g82mxswfc2rrqhfs4gd";
};
buildInputs =

View File

@ -17,9 +17,9 @@ let
else
throw "openjdk requires i686-linux or x86_64 linux";
update = "85";
update = "91";
build = "02";
build = "01";
# On x86 for heap sizes over 700MB disable SEGMEXEC and PAGEEXEC as well.
paxflags = if stdenv.isi686 then "msp" else "m";
@ -33,31 +33,31 @@ let
repover = "jdk7u${update}-b${build}";
jdk7 = fetchurl {
url = "${baseurl}/archive/${repover}.tar.gz";
sha256 = "1fs0vphf0z2hi51hzlw3ix80b9byah1mzhy5csh9j5f200q3ykk5";
sha256 = "08f7cbayyrryim3xbrs12cr12i1mczcikyc9rdlsyih0r4xvll28";
};
langtools = fetchurl {
url = "${baseurl}/langtools/archive/${repover}.tar.gz";
sha256 = "0n2cp0az2fyhaf34fmhiy57mdyp78596z7426alrww0jrv5491az";
sha256 = "0rmlzrgsacn60blpg1sp30k6p0sgzsml8wb41yc998km1bsnjxnh";
};
hotspot = fetchurl {
url = "${baseurl}/hotspot/archive/${repover}.tar.gz";
sha256 = "1l38wniq69vqlfk2rz8bmwly9wxrvlizf95x3wm2d0m5fsqsxhri";
sha256 = "1w1n81y9jcvjzssl4049yzfc0gdfnh73ki6wg1d8pg22zlyhrrwv";
};
corba = fetchurl {
url = "${baseurl}/corba/archive/${repover}.tar.gz";
sha256 = "0wys2zs1wvfiggvmqfmmgfamdqm5jln1sflc18w7bfzn4i77yy5j";
sha256 = "086yr927bxnlgljx7mw2cg6f6aip57hi4qpn1h35n6fsyvb4n67h";
};
jdk = fetchurl {
url = "${baseurl}/jdk/archive/${repover}.tar.gz";
sha256 = "094fdj3vlfgd6v8y0x03l6p5byvrskxcdw62xpp2bdp4z41ag79m";
sha256 = "14r39ylj3qa63arpqxl0h84baah1kjgnyp3v9d7d4vd0yagpn66b";
};
jaxws = fetchurl {
url = "${baseurl}/jaxws/archive/${repover}.tar.gz";
sha256 = "0bh61mxxxj8pvg6yjs4w53an6zjyrg242b8j0w4mlsjldrrv1wy4";
sha256 = "1p1739gb5gx9m4sm3i4javfk9lk41wnz92k6gis6sq99dd1bj1l5";
};
jaxp = fetchurl {
url = "${baseurl}/jaxp/archive/${repover}.tar.gz";
sha256 = "054qwx67z6ailrr5gx6zhp3090zc607bak7wlfpqbvvqr1dqqq5x";
sha256 = "1nl3kmbwqhhymcp25rnmf5mr3dn87lgdxvz9wgng7if6yqxlyakq";
};
openjdk = stdenv.mkDerivation rec {
name = "openjdk-7u${update}b${build}";

View File

@ -18,42 +18,42 @@ let
else
throw "openjdk requires i686-linux or x86_64 linux";
update = "72";
build = "04";
update = "76";
build = "00";
baseurl = "http://hg.openjdk.java.net/jdk8u/jdk8u";
repover = "jdk8u${update}-b${build}";
paxflags = if stdenv.isi686 then "msp" else "m";
jdk8 = fetchurl {
url = "${baseurl}/archive/${repover}.tar.gz";
sha256 = "07akz911xr1x28apxpk4vf9d5d76q3kzayjzdmg5czpd25fq122f";
sha256 = "1bzwrm18vdd531xxin7pzsc5dx2ybkdgdxz6jp2ki19ka6pmk1l7";
};
langtools = fetchurl {
url = "${baseurl}/langtools/archive/${repover}.tar.gz";
sha256 = "0d6b213phkrl8mcfydiv1lp9xifwb36rpxlkpkjnamzk4dxsvwwc";
sha256 = "044gyb7hgrahlr78vah9r3wfv6w569ihqzwqplwzr6m0l1s52994";
};
hotspot = fetchurl {
url = "${baseurl}/hotspot/archive/${repover}.tar.gz";
sha256 = "12hzkwy0rhpqkj9imh90x6qi6hdg19mib1vnpb76w27p3yfr7x3j";
sha256 = "1if70s9wjsvmrdj92ky88ngpmigi9c5gfpkilpydzdibs38f05f8";
};
corba = fetchurl {
url = "${baseurl}/corba/archive/${repover}.tar.gz";
sha256 = "1qxs34wl3pm99ryy9hvxhl8dyrsj5cj21ci9rf94x8agmbxrjlak";
sha256 = "0fl852x25cjzz3lrhjnhj59qbb4m3ywwc2f9vbj6mqdnpzl7cg83";
};
jdk = fetchurl {
url = "${baseurl}/jdk/archive/${repover}.tar.gz";
sha256 = "0hcf9azgr7p2ry7n117ba5k4q4h15gjh8nx7n8p45h3rr0a0ixh5";
sha256 = "11ql3p5fsizrn1fiylfkgrw0lgf6snwyich18hggsmd00bhvv3ah";
};
jaxws = fetchurl {
url = "${baseurl}/jaxws/archive/${repover}.tar.gz";
sha256 = "0kymcfk3khaj7j0jpbgcbadkhm82mllm7l7nzrilg4kynf2jrxhr";
sha256 = "1d2q4bbvlz557caqciwpd5ms9f14bjk8jl5zlfflqnww9b097qy4";
};
jaxp = fetchurl {
url = "${baseurl}/jaxp/archive/${repover}.tar.gz";
sha256 = "1a51qdgam0pmbhaiwvj3p21nlv32q3jw62fjddbjpz0jfx72124p";
sha256 = "0nrd4c77ggxkyv2271k30afbjjcp0kybc8gcypmhy8by54w4ap0j";
};
nashorn = fetchurl {
url = "${baseurl}/nashorn/archive/${repover}.tar.gz";
sha256 = "1spjlmm0plcg7s9fyrsyf3pljfm5855w3i3yqgp73lgnhn3ihfsd";
sha256 = "11idvkzk4nqhhw4xq5pl03g4gwnaiq021xxj2yx54rixr59zl0q6";
};
openjdk8 = stdenv.mkDerivation {
name = "openjdk-8u${update}b${build}";

View File

@ -6,13 +6,13 @@ in stdenv.mkDerivation rec {
# The commits "Fixate/tag v..." are the released versions.
# Ignore the "bumped version to ...." commits, they do not
# correspond to releases.
version = "1.1.9.1";
version = "1.1.9.2";
name = "uhc-${version}";
src = fetchgit {
url = "https://github.com/UU-ComputerScience/uhc.git";
rev = "ce93d01486972c994ea2bbbd3d43859911120c39";
sha256 = "1y670sc6ky74l3msayzqjlkjv1kpv3g35pirsq3q79klzvnpyj2x";
rev = "292d259113b98c32154a5be336875751caa5edbc";
sha256 = "1f462xq9ilkp9mnxm8hxhh1cdwps5d0hxysyibxryk32l7hh53cz";
};
postUnpack = "sourceRoot=\${sourceRoot}/EHC";
@ -51,6 +51,5 @@ in stdenv.mkDerivation rec {
# support the -static flag and thus breaks the build.
platforms = ["x86_64-linux"];
broken = true; # http://hydra.cryp.to/build/1344015/log/raw
};
}

View File

@ -4014,3 +4014,33 @@ dont-distribute-packages:
zsh-battery: [ i686-linux, x86_64-linux, x86_64-darwin ]
ztail: [ i686-linux, x86_64-linux, x86_64-darwin ]
Zwaluw: [ i686-linux, x86_64-linux, x86_64-darwin ]
HulkImport: [ i686-linux, x86_64-linux, x86_64-darwin ]
buffer-builder-aeson: [ i686-linux, x86_64-linux, x86_64-darwin ]
ciphersaber2: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-atk: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-cairo: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-gdk: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-gdkpixbuf: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-gio: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-glib: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-gobject: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-javascriptcore: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-notify: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-pango: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-soup: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-vte: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-webkit: [ i686-linux, x86_64-linux, x86_64-darwin ]
haskell-gi-base: [ i686-linux, x86_64-linux, x86_64-darwin ]
haskell-gi: [ i686-linux, x86_64-linux, x86_64-darwin ]
hfmt: [ i686-linux, x86_64-linux, x86_64-darwin ]
keera-hails-mvc-model-protectedmodel: [ i686-linux, x86_64-linux, x86_64-darwin ]
keera-hails-reactive-network: [ i686-linux, x86_64-linux, x86_64-darwin ]
keera-hails-reactive-polling: [ i686-linux, x86_64-linux, x86_64-darwin ]
keera-hails-reactive-wx: [ i686-linux, x86_64-linux, x86_64-darwin ]
keera-hails-reactive-yampa: [ i686-linux, x86_64-linux, x86_64-darwin ]
keera-hails-reactivelenses: [ i686-linux, x86_64-linux, x86_64-darwin ]
keera-hails-reactivevalues: [ i686-linux, x86_64-linux, x86_64-darwin ]
reflex-dom-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ]
versions: [ i686-linux, x86_64-linux, x86_64-darwin ]
zerobin: [ i686-linux, x86_64-linux, x86_64-darwin ]

View File

@ -596,6 +596,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1171,6 +1172,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1765,6 +1767,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2020,6 +2023,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2136,6 +2140,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2602,6 +2607,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2699,6 +2705,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3340,6 +3347,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3686,6 +3694,7 @@ self: super: {
"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";
@ -4577,6 +4586,7 @@ self: super: {
"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";
@ -5092,6 +5102,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5767,6 +5778,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6126,6 +6138,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_4";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6241,6 +6254,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7579,6 +7593,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8668,6 +8683,9 @@ self: super: {
"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";

View File

@ -596,6 +596,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1171,6 +1172,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1765,6 +1767,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2020,6 +2023,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2136,6 +2140,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2601,6 +2606,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2698,6 +2704,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3339,6 +3346,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3685,6 +3693,7 @@ self: super: {
"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";
@ -4576,6 +4585,7 @@ self: super: {
"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";
@ -5091,6 +5101,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5766,6 +5777,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6125,6 +6137,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_4";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6240,6 +6253,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7578,6 +7592,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8667,6 +8682,9 @@ self: super: {
"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";

View File

@ -596,6 +596,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1171,6 +1172,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1765,6 +1767,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2020,6 +2023,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2136,6 +2140,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2601,6 +2606,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2698,6 +2704,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3339,6 +3346,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3685,6 +3693,7 @@ self: super: {
"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";
@ -4576,6 +4585,7 @@ self: super: {
"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";
@ -5091,6 +5101,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5766,6 +5777,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6125,6 +6137,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_4";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6240,6 +6253,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7578,6 +7592,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8667,6 +8682,9 @@ self: super: {
"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";

View File

@ -596,6 +596,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1171,6 +1172,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1765,6 +1767,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2020,6 +2023,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2136,6 +2140,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2601,6 +2606,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2698,6 +2704,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3339,6 +3346,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3685,6 +3693,7 @@ self: super: {
"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";
@ -4576,6 +4585,7 @@ self: super: {
"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";
@ -5091,6 +5101,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5766,6 +5777,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6125,6 +6137,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_4";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6240,6 +6253,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7578,6 +7592,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8667,6 +8682,9 @@ self: super: {
"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";

View File

@ -596,6 +596,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1171,6 +1172,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1765,6 +1767,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2020,6 +2023,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2136,6 +2140,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2600,6 +2605,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2697,6 +2703,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3338,6 +3345,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3682,6 +3690,7 @@ self: super: {
"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";
@ -4573,6 +4582,7 @@ self: super: {
"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";
@ -5088,6 +5098,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5763,6 +5774,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6122,6 +6134,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6237,6 +6250,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7573,6 +7587,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8662,6 +8677,9 @@ self: super: {
"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";

View File

@ -596,6 +596,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1171,6 +1172,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1765,6 +1767,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2020,6 +2023,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2136,6 +2140,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2600,6 +2605,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2697,6 +2703,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3338,6 +3345,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3682,6 +3690,7 @@ self: super: {
"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";
@ -4573,6 +4582,7 @@ self: super: {
"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";
@ -5088,6 +5098,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5763,6 +5774,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6122,6 +6134,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6237,6 +6250,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7573,6 +7587,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8661,6 +8676,9 @@ self: super: {
"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";

View File

@ -596,6 +596,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1170,6 +1171,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1762,6 +1764,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2017,6 +2020,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2133,6 +2137,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2597,6 +2602,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2694,6 +2700,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3335,6 +3342,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3679,6 +3687,7 @@ self: super: {
"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";
@ -4569,6 +4578,7 @@ self: super: {
"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";
@ -5084,6 +5094,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5759,6 +5770,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6117,6 +6129,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6232,6 +6245,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7567,6 +7581,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8652,6 +8667,9 @@ self: super: {
"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";

View File

@ -596,6 +596,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1170,6 +1171,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1762,6 +1764,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2017,6 +2020,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2133,6 +2137,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2597,6 +2602,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2694,6 +2700,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3335,6 +3342,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3679,6 +3687,7 @@ self: super: {
"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";
@ -4569,6 +4578,7 @@ self: super: {
"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";
@ -5084,6 +5094,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5759,6 +5770,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6117,6 +6129,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6232,6 +6245,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7567,6 +7581,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8652,6 +8667,9 @@ self: super: {
"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";

View File

@ -593,6 +593,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1166,6 +1167,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1756,6 +1758,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2009,6 +2012,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2125,6 +2129,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2588,6 +2593,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2685,6 +2691,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3325,6 +3332,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3668,6 +3676,7 @@ self: super: {
"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";
@ -4557,6 +4566,7 @@ self: super: {
"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";
@ -5072,6 +5082,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5747,6 +5758,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6104,6 +6116,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6219,6 +6232,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7551,6 +7565,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8635,6 +8650,9 @@ self: super: {
"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";

View File

@ -593,6 +593,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_2";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1166,6 +1167,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1755,6 +1757,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2006,6 +2009,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2122,6 +2126,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2583,6 +2588,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2679,6 +2685,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3319,6 +3326,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3662,6 +3670,7 @@ self: super: {
"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";
@ -4546,6 +4555,7 @@ self: super: {
"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";
@ -5060,6 +5070,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5734,6 +5745,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6091,6 +6103,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6206,6 +6219,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7536,6 +7550,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8616,6 +8631,9 @@ self: super: {
"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";

View File

@ -592,6 +592,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_2";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1165,6 +1166,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1753,6 +1755,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2001,6 +2004,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2117,6 +2121,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2577,6 +2582,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2673,6 +2679,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3309,6 +3316,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3650,6 +3658,7 @@ self: super: {
"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";
@ -4531,6 +4540,7 @@ self: super: {
"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";
@ -5038,6 +5048,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5710,6 +5721,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6064,6 +6076,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6179,6 +6192,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7504,6 +7518,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8575,6 +8590,9 @@ self: super: {
"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";

View File

@ -592,6 +592,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_3";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1165,6 +1166,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1753,6 +1755,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2001,6 +2004,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2117,6 +2121,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2577,6 +2582,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2673,6 +2679,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3308,6 +3315,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3649,6 +3657,7 @@ self: super: {
"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";
@ -4530,6 +4539,7 @@ self: super: {
"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";
@ -5035,6 +5045,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5706,6 +5717,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6060,6 +6072,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6175,6 +6188,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7499,6 +7513,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8570,6 +8585,9 @@ self: super: {
"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";

View File

@ -592,6 +592,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_3";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1165,6 +1166,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1753,6 +1755,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2001,6 +2004,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2117,6 +2121,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2577,6 +2582,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2673,6 +2679,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3308,6 +3315,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3649,6 +3657,7 @@ self: super: {
"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";
@ -4529,6 +4538,7 @@ self: super: {
"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";
@ -5034,6 +5044,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5705,6 +5716,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6059,6 +6071,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6174,6 +6187,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7497,6 +7511,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8567,6 +8582,9 @@ self: super: {
"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";

View File

@ -592,6 +592,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_3";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1165,6 +1166,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1753,6 +1755,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2001,6 +2004,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2117,6 +2121,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2576,6 +2581,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2672,6 +2678,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3307,6 +3314,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3647,6 +3655,7 @@ self: super: {
"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";
@ -4527,6 +4536,7 @@ self: super: {
"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";
@ -5032,6 +5042,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5703,6 +5714,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6057,6 +6069,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6172,6 +6185,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7495,6 +7509,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8564,6 +8579,9 @@ self: super: {
"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";

View File

@ -591,6 +591,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_3";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1164,6 +1165,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1751,6 +1753,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1999,6 +2002,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2115,6 +2119,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2573,6 +2578,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2669,6 +2675,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3304,6 +3311,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3644,6 +3652,7 @@ self: super: {
"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";
@ -4523,6 +4532,7 @@ self: super: {
"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";
@ -5027,6 +5037,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5696,6 +5707,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6050,6 +6062,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6165,6 +6178,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7487,6 +7501,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8556,6 +8571,9 @@ self: super: {
"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";

View File

@ -591,6 +591,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_3";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1163,6 +1164,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1750,6 +1752,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1997,6 +2000,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2113,6 +2117,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2569,6 +2574,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2665,6 +2671,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3299,6 +3306,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3639,6 +3647,7 @@ self: super: {
"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";
@ -4518,6 +4527,7 @@ self: super: {
"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";
@ -5022,6 +5032,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5689,6 +5700,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6043,6 +6055,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6158,6 +6171,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7476,6 +7490,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8544,6 +8559,9 @@ self: super: {
"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";

View File

@ -593,6 +593,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_2";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1166,6 +1167,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1755,6 +1757,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2005,6 +2008,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2121,6 +2125,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2581,6 +2586,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2677,6 +2683,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3317,6 +3324,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3659,6 +3667,7 @@ self: super: {
"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";
@ -4543,6 +4552,7 @@ self: super: {
"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";
@ -5057,6 +5067,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5731,6 +5742,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6087,6 +6099,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6202,6 +6215,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7530,6 +7544,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8610,6 +8625,9 @@ self: super: {
"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";

View File

@ -592,6 +592,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_2";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1165,6 +1166,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1754,6 +1756,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2004,6 +2007,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2120,6 +2124,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2580,6 +2585,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2676,6 +2682,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3315,6 +3322,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3657,6 +3665,7 @@ self: super: {
"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";
@ -4540,6 +4549,7 @@ self: super: {
"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";
@ -5054,6 +5064,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5727,6 +5738,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6083,6 +6095,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6198,6 +6211,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7525,6 +7539,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8604,6 +8619,9 @@ self: super: {
"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";

View File

@ -592,6 +592,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_2";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1165,6 +1166,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1754,6 +1756,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2003,6 +2006,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2119,6 +2123,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2579,6 +2584,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2675,6 +2681,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3314,6 +3321,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3656,6 +3664,7 @@ self: super: {
"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";
@ -4539,6 +4548,7 @@ self: super: {
"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";
@ -5052,6 +5062,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5725,6 +5736,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6081,6 +6093,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6196,6 +6209,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7523,6 +7537,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8600,6 +8615,9 @@ self: super: {
"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";

View File

@ -592,6 +592,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_2";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1165,6 +1166,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1754,6 +1756,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2003,6 +2006,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2119,6 +2123,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2579,6 +2584,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2675,6 +2681,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3314,6 +3321,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3656,6 +3664,7 @@ self: super: {
"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";
@ -4539,6 +4548,7 @@ self: super: {
"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";
@ -5046,6 +5056,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5719,6 +5730,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6075,6 +6087,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6190,6 +6203,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7517,6 +7531,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8594,6 +8609,9 @@ self: super: {
"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";

View File

@ -592,6 +592,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_2";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1165,6 +1166,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1754,6 +1756,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2003,6 +2006,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2119,6 +2123,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2579,6 +2584,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2675,6 +2681,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3312,6 +3319,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3653,6 +3661,7 @@ self: super: {
"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";
@ -4535,6 +4544,7 @@ self: super: {
"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";
@ -5042,6 +5052,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5714,6 +5725,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6070,6 +6082,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6185,6 +6198,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7512,6 +7526,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8588,6 +8603,9 @@ self: super: {
"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";

View File

@ -592,6 +592,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_2";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1165,6 +1166,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1754,6 +1756,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -2003,6 +2006,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2119,6 +2123,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2579,6 +2584,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2675,6 +2681,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3311,6 +3318,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3652,6 +3660,7 @@ self: super: {
"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";
@ -4533,6 +4542,7 @@ self: super: {
"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";
@ -5040,6 +5050,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = dontDistribute super."lattices";
@ -5712,6 +5723,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -6067,6 +6079,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_1_5";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6182,6 +6195,7 @@ self: super: {
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = dontDistribute super."pipes-binary";
"pipes-bytestring" = dontDistribute super."pipes-bytestring";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7509,6 +7523,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8585,6 +8600,9 @@ self: super: {
"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";

View File

@ -586,6 +586,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_3_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1154,6 +1155,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1735,6 +1737,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1982,6 +1985,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2097,6 +2101,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2550,6 +2555,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2646,6 +2652,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3276,6 +3283,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3612,6 +3620,7 @@ self: super: {
"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";
@ -4486,6 +4495,7 @@ self: super: {
"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";
@ -4979,6 +4989,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5217,6 +5228,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5632,6 +5644,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5982,6 +5995,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6096,6 +6110,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7406,6 +7421,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8465,6 +8481,9 @@ self: super: {
"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";

View File

@ -586,6 +586,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_3_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1154,6 +1155,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1735,6 +1737,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1981,6 +1984,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2096,6 +2100,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2549,6 +2554,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2645,6 +2651,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3275,6 +3282,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3611,6 +3619,7 @@ self: super: {
"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";
@ -4484,6 +4493,7 @@ self: super: {
"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";
@ -4977,6 +4987,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5215,6 +5226,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5630,6 +5642,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5980,6 +5993,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6094,6 +6108,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7404,6 +7419,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8462,6 +8478,9 @@ self: super: {
"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";

View File

@ -585,6 +585,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_4";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1149,6 +1150,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1726,6 +1728,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1969,6 +1972,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2083,6 +2087,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2534,6 +2539,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2630,6 +2636,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3256,6 +3263,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3588,6 +3596,7 @@ self: super: {
"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";
@ -4456,6 +4465,7 @@ self: super: {
"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";
@ -4944,6 +4954,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5179,6 +5190,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5589,6 +5601,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5936,6 +5949,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6048,6 +6062,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7344,6 +7359,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8395,6 +8411,9 @@ self: super: {
"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";

View File

@ -585,6 +585,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1148,6 +1149,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1725,6 +1727,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1968,6 +1971,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2082,6 +2086,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2533,6 +2538,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2629,6 +2635,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3254,6 +3261,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3586,6 +3594,7 @@ self: super: {
"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";
@ -4452,6 +4461,7 @@ self: super: {
"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";
@ -4939,6 +4949,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5174,6 +5185,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5583,6 +5595,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5929,6 +5942,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6041,6 +6055,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7335,6 +7350,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8385,6 +8401,9 @@ self: super: {
"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";

View File

@ -585,6 +585,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1148,6 +1149,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1725,6 +1727,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1968,6 +1971,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2082,6 +2086,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2533,6 +2538,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2629,6 +2635,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3254,6 +3261,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3586,6 +3594,7 @@ self: super: {
"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";
@ -4452,6 +4461,7 @@ self: super: {
"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";
@ -4939,6 +4949,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5174,6 +5185,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5583,6 +5595,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5929,6 +5942,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6041,6 +6055,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7334,6 +7349,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8384,6 +8400,9 @@ self: super: {
"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";

View File

@ -585,6 +585,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1148,6 +1149,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1725,6 +1727,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1968,6 +1971,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2082,6 +2086,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2533,6 +2538,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2629,6 +2635,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3254,6 +3261,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3585,6 +3593,7 @@ self: super: {
"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";
@ -4451,6 +4460,7 @@ self: super: {
"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";
@ -4937,6 +4947,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5172,6 +5183,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5581,6 +5593,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5926,6 +5939,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6038,6 +6052,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7331,6 +7346,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8381,6 +8397,9 @@ self: super: {
"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";

View File

@ -585,6 +585,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1148,6 +1149,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1724,6 +1726,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1967,6 +1970,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2081,6 +2085,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2532,6 +2537,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2628,6 +2634,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3252,6 +3259,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3583,6 +3591,7 @@ self: super: {
"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";
@ -4448,6 +4457,7 @@ self: super: {
"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";
@ -4934,6 +4944,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5169,6 +5180,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5578,6 +5590,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5923,6 +5936,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6035,6 +6049,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7326,6 +7341,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8373,6 +8389,9 @@ self: super: {
"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";

View File

@ -585,6 +585,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1148,6 +1149,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1724,6 +1726,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1967,6 +1970,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2081,6 +2085,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2532,6 +2537,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2628,6 +2634,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3251,6 +3258,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3582,6 +3590,7 @@ self: super: {
"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";
@ -4447,6 +4456,7 @@ self: super: {
"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";
@ -4933,6 +4943,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5168,6 +5179,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5576,6 +5588,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5919,6 +5932,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6031,6 +6045,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7321,6 +7336,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8367,6 +8383,9 @@ self: super: {
"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";

View File

@ -583,6 +583,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1146,6 +1147,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1722,6 +1724,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1964,6 +1967,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2078,6 +2082,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2527,6 +2532,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2623,6 +2629,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3244,6 +3251,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3574,6 +3582,7 @@ self: super: {
"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";
@ -4438,6 +4447,7 @@ self: super: {
"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";
@ -4924,6 +4934,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5158,6 +5169,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5566,6 +5578,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5909,6 +5922,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6021,6 +6035,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7310,6 +7325,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8356,6 +8372,9 @@ self: super: {
"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";

View File

@ -583,6 +583,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1146,6 +1147,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1719,6 +1721,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1961,6 +1964,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2075,6 +2079,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2524,6 +2529,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2620,6 +2626,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3237,6 +3244,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3567,6 +3575,7 @@ self: super: {
"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";
@ -4430,6 +4439,7 @@ self: super: {
"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";
@ -4916,6 +4926,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5150,6 +5161,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5558,6 +5570,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5900,6 +5913,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6012,6 +6026,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7300,6 +7315,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8345,6 +8361,9 @@ self: super: {
"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";

View File

@ -582,6 +582,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1145,6 +1146,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1717,6 +1719,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1957,6 +1960,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2071,6 +2075,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2520,6 +2525,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2616,6 +2622,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3232,6 +3239,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3561,6 +3569,7 @@ self: super: {
"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";
@ -4423,6 +4432,7 @@ self: super: {
"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";
@ -4909,6 +4919,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5143,6 +5154,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5551,6 +5563,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5892,6 +5905,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6004,6 +6018,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7290,6 +7305,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8333,6 +8349,9 @@ self: super: {
"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";

View File

@ -582,6 +582,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1145,6 +1146,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1717,6 +1719,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1957,6 +1960,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2071,6 +2075,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2520,6 +2525,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2616,6 +2622,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3231,6 +3238,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3560,6 +3568,7 @@ self: super: {
"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";
@ -4422,6 +4431,7 @@ self: super: {
"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";
@ -4908,6 +4918,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5142,6 +5153,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5548,6 +5560,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5889,6 +5902,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6001,6 +6015,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7285,6 +7300,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8327,6 +8343,9 @@ self: super: {
"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";

View File

@ -586,6 +586,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_3_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1153,6 +1154,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1734,6 +1736,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1978,6 +1981,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2093,6 +2097,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2546,6 +2551,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2642,6 +2648,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3272,6 +3279,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3607,6 +3615,7 @@ self: super: {
"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";
@ -4480,6 +4489,7 @@ self: super: {
"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";
@ -4973,6 +4983,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5211,6 +5222,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5626,6 +5638,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5975,6 +5988,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6089,6 +6103,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7399,6 +7414,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8456,6 +8472,9 @@ self: super: {
"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";

View File

@ -582,6 +582,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_3";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1145,6 +1146,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1717,6 +1719,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1957,6 +1960,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2070,6 +2074,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2518,6 +2523,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2614,6 +2620,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3228,6 +3235,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3557,6 +3565,7 @@ self: super: {
"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";
@ -4418,6 +4427,7 @@ self: super: {
"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";
@ -4904,6 +4914,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5138,6 +5149,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5544,6 +5556,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5885,6 +5898,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -5997,6 +6011,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7279,6 +7294,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8321,6 +8337,9 @@ self: super: {
"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";

View File

@ -582,6 +582,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_3";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1145,6 +1146,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1717,6 +1719,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1957,6 +1960,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2070,6 +2074,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2518,6 +2523,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2614,6 +2620,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3228,6 +3235,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3556,6 +3564,7 @@ self: super: {
"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";
@ -4417,6 +4426,7 @@ self: super: {
"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";
@ -4902,6 +4912,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5136,6 +5147,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5542,6 +5554,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5883,6 +5896,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -5989,11 +6003,13 @@ self: super: {
"pinboard" = dontDistribute super."pinboard";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
"pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_3";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7274,6 +7290,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8313,6 +8330,9 @@ self: super: {
"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";

View File

@ -582,6 +582,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_3";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1144,6 +1145,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1716,6 +1718,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1956,6 +1959,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2069,6 +2073,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2517,6 +2522,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2613,6 +2619,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3227,6 +3234,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3555,6 +3563,7 @@ self: super: {
"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";
@ -4415,6 +4424,7 @@ self: super: {
"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";
@ -4899,6 +4909,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5133,6 +5144,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5538,6 +5550,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5879,6 +5892,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -5985,11 +5999,13 @@ self: super: {
"pinboard" = dontDistribute super."pinboard";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
"pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_3";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7270,6 +7286,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8309,6 +8326,9 @@ self: super: {
"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";

View File

@ -586,6 +586,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_3_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1153,6 +1154,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1734,6 +1736,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1978,6 +1981,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2093,6 +2097,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2546,6 +2551,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2642,6 +2648,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3271,6 +3278,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3606,6 +3614,7 @@ self: super: {
"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";
@ -4479,6 +4488,7 @@ self: super: {
"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";
@ -4971,6 +4981,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5209,6 +5220,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5624,6 +5636,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5973,6 +5986,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6087,6 +6101,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7396,6 +7411,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8453,6 +8469,9 @@ self: super: {
"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";

View File

@ -586,6 +586,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_3_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1153,6 +1154,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1733,6 +1735,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1977,6 +1980,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2092,6 +2096,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2545,6 +2550,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2641,6 +2647,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3270,6 +3277,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3605,6 +3613,7 @@ self: super: {
"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";
@ -4478,6 +4487,7 @@ self: super: {
"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";
@ -4970,6 +4980,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5208,6 +5219,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5622,6 +5634,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5970,6 +5983,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6083,6 +6097,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7391,6 +7406,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8448,6 +8464,9 @@ self: super: {
"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";

View File

@ -586,6 +586,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_4";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1153,6 +1154,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1733,6 +1735,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1977,6 +1980,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2092,6 +2096,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2544,6 +2549,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2640,6 +2646,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3269,6 +3276,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3604,6 +3612,7 @@ self: super: {
"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";
@ -4477,6 +4486,7 @@ self: super: {
"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";
@ -4969,6 +4979,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5206,6 +5217,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5620,6 +5632,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5968,6 +5981,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6081,6 +6095,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7388,6 +7403,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8445,6 +8461,9 @@ self: super: {
"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";

View File

@ -586,6 +586,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_4";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1151,6 +1152,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1730,6 +1732,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1974,6 +1977,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2089,6 +2093,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2541,6 +2546,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2637,6 +2643,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3266,6 +3273,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3599,6 +3607,7 @@ self: super: {
"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";
@ -4472,6 +4481,7 @@ self: super: {
"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";
@ -4964,6 +4974,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5201,6 +5212,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5614,6 +5626,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5962,6 +5975,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6075,6 +6089,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7382,6 +7397,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8436,6 +8452,9 @@ self: super: {
"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";

View File

@ -585,6 +585,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_4";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1150,6 +1151,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1729,6 +1731,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1973,6 +1976,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2088,6 +2092,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2540,6 +2545,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2636,6 +2642,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3265,6 +3272,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3598,6 +3606,7 @@ self: super: {
"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";
@ -4471,6 +4480,7 @@ self: super: {
"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";
@ -4963,6 +4973,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5200,6 +5211,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5614,6 +5626,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5961,6 +5974,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6074,6 +6088,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7381,6 +7396,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8435,6 +8451,9 @@ self: super: {
"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";

View File

@ -585,6 +585,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_4";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1149,6 +1150,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1728,6 +1730,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1972,6 +1975,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2087,6 +2091,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2539,6 +2544,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2635,6 +2641,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3263,6 +3270,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3596,6 +3604,7 @@ self: super: {
"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";
@ -4468,6 +4477,7 @@ self: super: {
"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";
@ -4959,6 +4969,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5196,6 +5207,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5610,6 +5622,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5957,6 +5970,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6070,6 +6084,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7373,6 +7388,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8427,6 +8443,9 @@ self: super: {
"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";

View File

@ -585,6 +585,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_4";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1149,6 +1150,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"agda-server" = dontDistribute super."agda-server";
"agda-snippets" = dontDistribute super."agda-snippets";
"agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll";
"agentx" = dontDistribute super."agentx";
"agum" = dontDistribute super."agum";
"aig" = dontDistribute super."aig";
@ -1726,6 +1728,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1969,6 +1972,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = dontDistribute super."clash-ghc";
@ -2084,6 +2088,7 @@ self: super: {
"compdata-automata" = dontDistribute super."compdata-automata";
"compdata-dags" = dontDistribute super."compdata-dags";
"compdata-param" = dontDistribute super."compdata-param";
"compensated" = doDistribute super."compensated_0_6_1";
"competition" = dontDistribute super."competition";
"compilation" = dontDistribute super."compilation";
"complex-generic" = dontDistribute super."complex-generic";
@ -2536,6 +2541,7 @@ self: super: {
"dicom" = dontDistribute super."dicom";
"dictparser" = dontDistribute super."dictparser";
"diet" = dontDistribute super."diet";
"diff-gestalt" = dontDistribute super."diff-gestalt";
"diff-parse" = dontDistribute super."diff-parse";
"diff3" = dontDistribute super."diff3";
"diffarray" = dontDistribute super."diffarray";
@ -2632,6 +2638,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3258,6 +3265,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3590,6 +3598,7 @@ self: super: {
"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";
@ -4460,6 +4469,7 @@ self: super: {
"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";
@ -4951,6 +4961,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_2_1_1";
@ -5187,6 +5198,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucid-svg" = doDistribute super."lucid-svg_0_4_0_4";
"lucienne" = dontDistribute super."lucienne";
@ -5600,6 +5612,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = dontDistribute super."nationstates";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5947,6 +5960,7 @@ self: super: {
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path" = dontDistribute super."path";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -6059,6 +6073,7 @@ self: super: {
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-bgzf" = dontDistribute super."pipes-bgzf";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7359,6 +7374,7 @@ self: super: {
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger" = dontDistribute super."swagger";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -8410,6 +8426,9 @@ self: super: {
"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";

View File

@ -568,6 +568,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_3";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1118,6 +1119,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"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";
@ -1656,6 +1658,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1886,6 +1889,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = doDistribute super."clash-ghc_0_5_11";
@ -2429,6 +2433,7 @@ self: super: {
"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";
@ -2519,6 +2524,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3113,6 +3119,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3435,6 +3442,7 @@ self: super: {
"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";
@ -4271,6 +4279,7 @@ self: super: {
"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";
@ -4724,6 +4733,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_3";
@ -4947,6 +4957,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
@ -5022,6 +5033,7 @@ self: super: {
"markov" = dontDistribute super."markov";
"markov-chain" = dontDistribute super."markov-chain";
"markov-processes" = dontDistribute super."markov-processes";
"markup" = doDistribute super."markup_1_1_0";
"markup-preview" = dontDistribute super."markup-preview";
"marmalade-upload" = dontDistribute super."marmalade-upload";
"marquise" = dontDistribute super."marquise";
@ -5330,6 +5342,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = doDistribute super."nationstates_0_2_0_0";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5661,6 +5674,7 @@ self: super: {
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -5763,9 +5777,11 @@ self: super: {
"pinboard" = dontDistribute super."pinboard";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -7006,6 +7022,7 @@ self: super: {
"svm-light-utils" = dontDistribute super."svm-light-utils";
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -7551,6 +7568,7 @@ self: super: {
"urldecode" = dontDistribute super."urldecode";
"urldisp-happstack" = dontDistribute super."urldisp-happstack";
"urlencoded" = dontDistribute super."urlencoded";
"urlpath" = doDistribute super."urlpath_2_1_0";
"urn" = dontDistribute super."urn";
"urxml" = dontDistribute super."urxml";
"usb" = dontDistribute super."usb";
@ -7675,6 +7693,7 @@ self: super: {
"waddle" = dontDistribute super."waddle";
"wai" = doDistribute super."wai_3_0_3_0";
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
"wai-cors" = doDistribute super."wai-cors_0_2_3";
"wai-devel" = dontDistribute super."wai-devel";
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
"wai-dispatch" = dontDistribute super."wai-dispatch";
@ -7997,6 +8016,9 @@ self: super: {
"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";

View File

@ -568,6 +568,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_3";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1116,6 +1117,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"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";
@ -1653,6 +1655,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1883,6 +1886,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = doDistribute super."clash-ghc_0_5_11";
@ -2426,6 +2430,7 @@ self: super: {
"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";
@ -2516,6 +2521,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3107,6 +3113,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3429,6 +3436,7 @@ self: super: {
"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";
@ -4264,6 +4272,7 @@ self: super: {
"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";
@ -4717,6 +4726,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_3";
@ -4940,6 +4950,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
@ -5014,6 +5025,7 @@ self: super: {
"markov" = dontDistribute super."markov";
"markov-chain" = dontDistribute super."markov-chain";
"markov-processes" = dontDistribute super."markov-processes";
"markup" = doDistribute super."markup_1_1_0";
"markup-preview" = dontDistribute super."markup-preview";
"marmalade-upload" = dontDistribute super."marmalade-upload";
"marquise" = dontDistribute super."marquise";
@ -5321,6 +5333,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = doDistribute super."nationstates_0_2_0_0";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5652,6 +5665,7 @@ self: super: {
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -5753,9 +5767,11 @@ self: super: {
"pinboard" = dontDistribute super."pinboard";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -6995,6 +7011,7 @@ self: super: {
"svm-light-utils" = dontDistribute super."svm-light-utils";
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -7540,6 +7557,7 @@ self: super: {
"urldecode" = dontDistribute super."urldecode";
"urldisp-happstack" = dontDistribute super."urldisp-happstack";
"urlencoded" = dontDistribute super."urlencoded";
"urlpath" = doDistribute super."urlpath_2_1_0";
"urn" = dontDistribute super."urn";
"urxml" = dontDistribute super."urxml";
"usb" = dontDistribute super."usb";
@ -7663,6 +7681,7 @@ self: super: {
"waddle" = dontDistribute super."waddle";
"wai" = doDistribute super."wai_3_0_3_0";
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
"wai-cors" = doDistribute super."wai-cors_0_2_3";
"wai-devel" = dontDistribute super."wai-devel";
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
"wai-dispatch" = dontDistribute super."wai-dispatch";
@ -7985,6 +8004,9 @@ self: super: {
"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";

View File

@ -561,6 +561,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1104,6 +1105,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"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";
@ -1628,6 +1630,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1853,6 +1856,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = doDistribute super."clash-ghc_0_5_15";
@ -2379,6 +2383,7 @@ self: super: {
"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";
@ -2464,6 +2469,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3039,6 +3045,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3358,6 +3365,7 @@ self: super: {
"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";
@ -4180,6 +4188,7 @@ self: super: {
"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";
@ -4623,6 +4632,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_3";
@ -4842,6 +4852,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
@ -4913,6 +4924,7 @@ self: super: {
"markov" = dontDistribute super."markov";
"markov-chain" = dontDistribute super."markov-chain";
"markov-processes" = dontDistribute super."markov-processes";
"markup" = doDistribute super."markup_1_1_0";
"markup-preview" = dontDistribute super."markup-preview";
"marmalade-upload" = dontDistribute super."marmalade-upload";
"marquise" = dontDistribute super."marquise";
@ -5088,6 +5100,7 @@ self: super: {
"monads-fd" = dontDistribute super."monads-fd";
"monadtransform" = dontDistribute super."monadtransform";
"monarch" = dontDistribute super."monarch";
"mongoDB" = doDistribute super."mongoDB_2_0_8";
"mongodb-queue" = dontDistribute super."mongodb-queue";
"mongrel2-handler" = dontDistribute super."mongrel2-handler";
"monitor" = dontDistribute super."monitor";
@ -5214,6 +5227,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = doDistribute super."nationstates_0_2_0_3";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5538,6 +5552,7 @@ self: super: {
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -5638,8 +5653,10 @@ self: super: {
"pinboard" = dontDistribute super."pinboard";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -6840,6 +6857,7 @@ self: super: {
"svm-light-utils" = dontDistribute super."svm-light-utils";
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -7201,6 +7219,7 @@ self: super: {
"turing-music" = dontDistribute super."turing-music";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_2";
"tweak" = dontDistribute super."tweak";
"twentefp" = dontDistribute super."twentefp";
"twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
@ -7374,6 +7393,7 @@ self: super: {
"urldecode" = dontDistribute super."urldecode";
"urldisp-happstack" = dontDistribute super."urldisp-happstack";
"urlencoded" = dontDistribute super."urlencoded";
"urlpath" = doDistribute super."urlpath_2_1_0";
"urn" = dontDistribute super."urn";
"urxml" = dontDistribute super."urxml";
"usb" = dontDistribute super."usb";
@ -7493,6 +7513,7 @@ self: super: {
"vty-ui-extras" = dontDistribute super."vty-ui-extras";
"waddle" = dontDistribute super."waddle";
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
"wai-cors" = doDistribute super."wai-cors_0_2_3";
"wai-devel" = dontDistribute super."wai-devel";
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
"wai-dispatch" = dontDistribute super."wai-dispatch";
@ -7794,6 +7815,9 @@ self: super: {
"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";

View File

@ -561,6 +561,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1104,6 +1105,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"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";
@ -1626,6 +1628,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1850,6 +1853,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = doDistribute super."clash-ghc_0_5_15";
@ -2375,6 +2379,7 @@ self: super: {
"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";
@ -2460,6 +2465,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3034,6 +3040,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3352,6 +3359,7 @@ self: super: {
"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";
@ -4172,6 +4180,7 @@ self: super: {
"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";
@ -4615,6 +4624,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_3";
@ -4834,6 +4844,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
@ -4905,6 +4916,7 @@ self: super: {
"markov" = dontDistribute super."markov";
"markov-chain" = dontDistribute super."markov-chain";
"markov-processes" = dontDistribute super."markov-processes";
"markup" = doDistribute super."markup_1_1_0";
"markup-preview" = dontDistribute super."markup-preview";
"marmalade-upload" = dontDistribute super."marmalade-upload";
"marquise" = dontDistribute super."marquise";
@ -5080,6 +5092,7 @@ self: super: {
"monads-fd" = dontDistribute super."monads-fd";
"monadtransform" = dontDistribute super."monadtransform";
"monarch" = dontDistribute super."monarch";
"mongoDB" = doDistribute super."mongoDB_2_0_8";
"mongodb-queue" = dontDistribute super."mongodb-queue";
"mongrel2-handler" = dontDistribute super."mongrel2-handler";
"monitor" = dontDistribute super."monitor";
@ -5206,6 +5219,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = doDistribute super."nationstates_0_2_0_3";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5531,6 +5545,7 @@ self: super: {
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -5628,8 +5643,10 @@ self: super: {
"pinboard" = dontDistribute super."pinboard";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -6828,6 +6845,7 @@ self: super: {
"svm-light-utils" = dontDistribute super."svm-light-utils";
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -7188,6 +7206,7 @@ self: super: {
"turing-music" = dontDistribute super."turing-music";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_2";
"tweak" = dontDistribute super."tweak";
"twentefp" = dontDistribute super."twentefp";
"twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
@ -7361,6 +7380,7 @@ self: super: {
"urldecode" = dontDistribute super."urldecode";
"urldisp-happstack" = dontDistribute super."urldisp-happstack";
"urlencoded" = dontDistribute super."urlencoded";
"urlpath" = doDistribute super."urlpath_2_1_0";
"urn" = dontDistribute super."urn";
"urxml" = dontDistribute super."urxml";
"usb" = dontDistribute super."usb";
@ -7480,6 +7500,7 @@ self: super: {
"vty-ui-extras" = dontDistribute super."vty-ui-extras";
"waddle" = dontDistribute super."waddle";
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
"wai-cors" = doDistribute super."wai-cors_0_2_3";
"wai-devel" = dontDistribute super."wai-devel";
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
"wai-dispatch" = dontDistribute super."wai-dispatch";
@ -7780,6 +7801,9 @@ self: super: {
"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";

View File

@ -559,6 +559,7 @@ self: super: {
"JsonGrammar" = dontDistribute super."JsonGrammar";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1102,6 +1103,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"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";
@ -1624,6 +1626,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1847,6 +1850,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = doDistribute super."clash-ghc_0_5_15";
@ -2369,6 +2373,7 @@ self: super: {
"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";
@ -2454,6 +2459,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3027,6 +3033,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3344,6 +3351,7 @@ self: super: {
"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";
@ -4163,6 +4171,7 @@ self: super: {
"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";
@ -4606,6 +4615,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_3";
@ -4825,6 +4835,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
@ -4896,6 +4907,7 @@ self: super: {
"markov" = dontDistribute super."markov";
"markov-chain" = dontDistribute super."markov-chain";
"markov-processes" = dontDistribute super."markov-processes";
"markup" = doDistribute super."markup_1_1_0";
"markup-preview" = dontDistribute super."markup-preview";
"marmalade-upload" = dontDistribute super."marmalade-upload";
"marquise" = dontDistribute super."marquise";
@ -5070,6 +5082,7 @@ self: super: {
"monads-fd" = dontDistribute super."monads-fd";
"monadtransform" = dontDistribute super."monadtransform";
"monarch" = dontDistribute super."monarch";
"mongoDB" = doDistribute super."mongoDB_2_0_8";
"mongodb-queue" = dontDistribute super."mongodb-queue";
"mongrel2-handler" = dontDistribute super."mongrel2-handler";
"monitor" = dontDistribute super."monitor";
@ -5196,6 +5209,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = doDistribute super."nationstates_0_2_0_3";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5521,6 +5535,7 @@ self: super: {
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path-extra" = dontDistribute super."path-extra";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype";
@ -5617,8 +5632,10 @@ self: super: {
"pinboard" = dontDistribute super."pinboard";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -6817,6 +6834,7 @@ self: super: {
"svm-light-utils" = dontDistribute super."svm-light-utils";
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -7174,6 +7192,7 @@ self: super: {
"turing-music" = dontDistribute super."turing-music";
"turkish-deasciifier" = dontDistribute super."turkish-deasciifier";
"turni" = dontDistribute super."turni";
"turtle" = doDistribute super."turtle_1_2_2";
"tweak" = dontDistribute super."tweak";
"twentefp" = dontDistribute super."twentefp";
"twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics";
@ -7346,6 +7365,7 @@ self: super: {
"urldecode" = dontDistribute super."urldecode";
"urldisp-happstack" = dontDistribute super."urldisp-happstack";
"urlencoded" = dontDistribute super."urlencoded";
"urlpath" = doDistribute super."urlpath_2_1_0";
"urn" = dontDistribute super."urn";
"urxml" = dontDistribute super."urxml";
"usb" = dontDistribute super."usb";
@ -7465,6 +7485,7 @@ self: super: {
"vty-ui-extras" = dontDistribute super."vty-ui-extras";
"waddle" = dontDistribute super."waddle";
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
"wai-cors" = doDistribute super."wai-cors_0_2_3";
"wai-devel" = dontDistribute super."wai-devel";
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
"wai-dispatch" = dontDistribute super."wai-dispatch";
@ -7765,6 +7786,9 @@ self: super: {
"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";

File diff suppressed because it is too large Load Diff

View File

@ -566,6 +566,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_6";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1114,6 +1115,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"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";
@ -1650,6 +1652,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1880,6 +1883,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = doDistribute super."clash-ghc_0_5_11";
@ -2423,6 +2427,7 @@ self: super: {
"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";
@ -2512,6 +2517,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3102,6 +3108,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3423,6 +3430,7 @@ self: super: {
"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";
@ -4258,6 +4266,7 @@ self: super: {
"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";
@ -4710,6 +4719,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_3";
@ -4932,6 +4942,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
@ -5006,6 +5017,7 @@ self: super: {
"markov" = dontDistribute super."markov";
"markov-chain" = dontDistribute super."markov-chain";
"markov-processes" = dontDistribute super."markov-processes";
"markup" = doDistribute super."markup_1_1_0";
"markup-preview" = dontDistribute super."markup-preview";
"marmalade-upload" = dontDistribute super."marmalade-upload";
"marquise" = dontDistribute super."marquise";
@ -5313,6 +5325,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = doDistribute super."nationstates_0_2_0_0";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5644,6 +5657,7 @@ self: super: {
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -5745,9 +5759,11 @@ self: super: {
"pinboard" = dontDistribute super."pinboard";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -6980,6 +6996,7 @@ self: super: {
"svm-light-utils" = dontDistribute super."svm-light-utils";
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -7525,6 +7542,7 @@ self: super: {
"urldecode" = dontDistribute super."urldecode";
"urldisp-happstack" = dontDistribute super."urldisp-happstack";
"urlencoded" = dontDistribute super."urlencoded";
"urlpath" = doDistribute super."urlpath_2_1_0";
"urn" = dontDistribute super."urn";
"urxml" = dontDistribute super."urxml";
"usb" = dontDistribute super."usb";
@ -7648,6 +7666,7 @@ self: super: {
"waddle" = dontDistribute super."waddle";
"wai" = doDistribute super."wai_3_0_3_0";
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
"wai-cors" = doDistribute super."wai-cors_0_2_3";
"wai-devel" = dontDistribute super."wai-devel";
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
"wai-dispatch" = dontDistribute super."wai-dispatch";
@ -7968,6 +7987,9 @@ self: super: {
"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";

View File

@ -566,6 +566,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1114,6 +1115,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"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";
@ -1649,6 +1651,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1879,6 +1882,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = doDistribute super."clash-ghc_0_5_11";
@ -2419,6 +2423,7 @@ self: super: {
"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";
@ -2508,6 +2513,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3097,6 +3103,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3418,6 +3425,7 @@ self: super: {
"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";
@ -4251,6 +4259,7 @@ self: super: {
"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";
@ -4703,6 +4712,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_3";
@ -4925,6 +4935,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
@ -4999,6 +5010,7 @@ self: super: {
"markov" = dontDistribute super."markov";
"markov-chain" = dontDistribute super."markov-chain";
"markov-processes" = dontDistribute super."markov-processes";
"markup" = doDistribute super."markup_1_1_0";
"markup-preview" = dontDistribute super."markup-preview";
"marmalade-upload" = dontDistribute super."marmalade-upload";
"marquise" = dontDistribute super."marquise";
@ -5306,6 +5318,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = doDistribute super."nationstates_0_2_0_1";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5636,6 +5649,7 @@ self: super: {
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -5737,9 +5751,11 @@ self: super: {
"pinboard" = dontDistribute super."pinboard";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -6970,6 +6986,7 @@ self: super: {
"svm-light-utils" = dontDistribute super."svm-light-utils";
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -7514,6 +7531,7 @@ self: super: {
"urldecode" = dontDistribute super."urldecode";
"urldisp-happstack" = dontDistribute super."urldisp-happstack";
"urlencoded" = dontDistribute super."urlencoded";
"urlpath" = doDistribute super."urlpath_2_1_0";
"urn" = dontDistribute super."urn";
"urxml" = dontDistribute super."urxml";
"usb" = dontDistribute super."usb";
@ -7636,6 +7654,7 @@ self: super: {
"waddle" = dontDistribute super."waddle";
"wai" = doDistribute super."wai_3_0_3_0";
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
"wai-cors" = doDistribute super."wai-cors_0_2_3";
"wai-devel" = dontDistribute super."wai-devel";
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
"wai-dispatch" = dontDistribute super."wai-dispatch";
@ -7955,6 +7974,9 @@ self: super: {
"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";

View File

@ -566,6 +566,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1114,6 +1115,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"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";
@ -1649,6 +1651,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1878,6 +1881,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = doDistribute super."clash-ghc_0_5_11";
@ -2418,6 +2422,7 @@ self: super: {
"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";
@ -2507,6 +2512,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3096,6 +3102,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3417,6 +3424,7 @@ self: super: {
"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";
@ -4250,6 +4258,7 @@ self: super: {
"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";
@ -4702,6 +4711,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_3";
@ -4924,6 +4934,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
@ -4998,6 +5009,7 @@ self: super: {
"markov" = dontDistribute super."markov";
"markov-chain" = dontDistribute super."markov-chain";
"markov-processes" = dontDistribute super."markov-processes";
"markup" = doDistribute super."markup_1_1_0";
"markup-preview" = dontDistribute super."markup-preview";
"marmalade-upload" = dontDistribute super."marmalade-upload";
"marquise" = dontDistribute super."marquise";
@ -5305,6 +5317,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = doDistribute super."nationstates_0_2_0_2";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5635,6 +5648,7 @@ self: super: {
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -5736,9 +5750,11 @@ self: super: {
"pinboard" = dontDistribute super."pinboard";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -6967,6 +6983,7 @@ self: super: {
"svm-light-utils" = dontDistribute super."svm-light-utils";
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -7511,6 +7528,7 @@ self: super: {
"urldecode" = dontDistribute super."urldecode";
"urldisp-happstack" = dontDistribute super."urldisp-happstack";
"urlencoded" = dontDistribute super."urlencoded";
"urlpath" = doDistribute super."urlpath_2_1_0";
"urn" = dontDistribute super."urn";
"urxml" = dontDistribute super."urxml";
"usb" = dontDistribute super."usb";
@ -7633,6 +7651,7 @@ self: super: {
"waddle" = dontDistribute super."waddle";
"wai" = doDistribute super."wai_3_0_3_0";
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
"wai-cors" = doDistribute super."wai-cors_0_2_3";
"wai-devel" = dontDistribute super."wai-devel";
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
"wai-dispatch" = dontDistribute super."wai-dispatch";
@ -7951,6 +7970,9 @@ self: super: {
"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";

View File

@ -566,6 +566,7 @@ self: super: {
"JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1";
"JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas";
"JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa";
"JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct";
"JuicyPixels-util" = dontDistribute super."JuicyPixels-util";
"JunkDB" = dontDistribute super."JunkDB";
"JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm";
@ -1114,6 +1115,7 @@ self: super: {
"afv" = dontDistribute super."afv";
"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";
@ -1648,6 +1650,7 @@ self: super: {
"broccoli" = dontDistribute super."broccoli";
"broker-haskell" = dontDistribute super."broker-haskell";
"bsd-sysctl" = dontDistribute super."bsd-sysctl";
"bson" = doDistribute super."bson_0_3_1";
"bson-generic" = dontDistribute super."bson-generic";
"bson-generics" = dontDistribute super."bson-generics";
"bson-lens" = dontDistribute super."bson-lens";
@ -1876,6 +1879,7 @@ self: super: {
"clafer" = dontDistribute super."clafer";
"claferIG" = dontDistribute super."claferIG";
"claferwiki" = dontDistribute super."claferwiki";
"clang-pure" = dontDistribute super."clang-pure";
"clanki" = dontDistribute super."clanki";
"clash" = dontDistribute super."clash";
"clash-ghc" = doDistribute super."clash-ghc_0_5_13";
@ -2415,6 +2419,7 @@ self: super: {
"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";
@ -2504,6 +2509,7 @@ self: super: {
"dotenv" = dontDistribute super."dotenv";
"dotfs" = dontDistribute super."dotfs";
"dotgen" = dontDistribute super."dotgen";
"double-metaphone" = dontDistribute super."double-metaphone";
"dove" = dontDistribute super."dove";
"dow" = dontDistribute super."dow";
"download" = dontDistribute super."download";
@ -3091,6 +3097,7 @@ self: super: {
"ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib";
"ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph";
"ghc-server" = dontDistribute super."ghc-server";
"ghc-session" = dontDistribute super."ghc-session";
"ghc-simple" = dontDistribute super."ghc-simple";
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
"ghc-syb" = dontDistribute super."ghc-syb";
@ -3412,6 +3419,7 @@ self: super: {
"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";
@ -4242,6 +4250,7 @@ self: super: {
"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";
@ -4691,6 +4700,7 @@ self: super: {
"lat" = dontDistribute super."lat";
"latest-npm-version" = dontDistribute super."latest-npm-version";
"latex" = dontDistribute super."latex";
"latex-formulae-hakyll" = dontDistribute super."latex-formulae-hakyll";
"latex-formulae-image" = dontDistribute super."latex-formulae-image";
"latex-formulae-pandoc" = dontDistribute super."latex-formulae-pandoc";
"lattices" = doDistribute super."lattices_1_3";
@ -4912,6 +4922,7 @@ self: super: {
"luachunk" = dontDistribute super."luachunk";
"luautils" = dontDistribute super."luautils";
"lub" = dontDistribute super."lub";
"lucid" = doDistribute super."lucid_2_9_2";
"lucid-foundation" = dontDistribute super."lucid-foundation";
"lucienne" = dontDistribute super."lucienne";
"luhn" = dontDistribute super."luhn";
@ -4986,6 +4997,7 @@ self: super: {
"markov" = dontDistribute super."markov";
"markov-chain" = dontDistribute super."markov-chain";
"markov-processes" = dontDistribute super."markov-processes";
"markup" = doDistribute super."markup_1_1_0";
"markup-preview" = dontDistribute super."markup-preview";
"marmalade-upload" = dontDistribute super."marmalade-upload";
"marquise" = dontDistribute super."marquise";
@ -5292,6 +5304,7 @@ self: super: {
"narc" = dontDistribute super."narc";
"nat" = dontDistribute super."nat";
"nationstates" = doDistribute super."nationstates_0_2_0_3";
"nats" = doDistribute super."nats_1";
"nats-queue" = dontDistribute super."nats-queue";
"natural-number" = dontDistribute super."natural-number";
"natural-numbers" = dontDistribute super."natural-numbers";
@ -5621,6 +5634,7 @@ self: super: {
"patch-combinators" = dontDistribute super."patch-combinators";
"patch-image" = dontDistribute super."patch-image";
"patches-vector" = dontDistribute super."patches-vector";
"path-extra" = dontDistribute super."path-extra";
"path-pieces" = doDistribute super."path-pieces_0_2_0";
"pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore";
@ -5722,9 +5736,11 @@ self: super: {
"pinboard" = dontDistribute super."pinboard";
"pipe-enumerator" = dontDistribute super."pipe-enumerator";
"pipeclip" = dontDistribute super."pipeclip";
"pipes" = doDistribute super."pipes_4_1_6";
"pipes-async" = dontDistribute super."pipes-async";
"pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming";
"pipes-binary" = doDistribute super."pipes-binary_0_4_0_4";
"pipes-cacophony" = dontDistribute super."pipes-cacophony";
"pipes-cellular" = dontDistribute super."pipes-cellular";
"pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv";
"pipes-cereal" = dontDistribute super."pipes-cereal";
@ -6949,6 +6965,7 @@ self: super: {
"svm-light-utils" = dontDistribute super."svm-light-utils";
"svm-simple" = dontDistribute super."svm-simple";
"svndump" = dontDistribute super."svndump";
"swagger2" = dontDistribute super."swagger2";
"swapper" = dontDistribute super."swapper";
"swearjure" = dontDistribute super."swearjure";
"swf" = dontDistribute super."swf";
@ -7490,6 +7507,7 @@ self: super: {
"urldecode" = dontDistribute super."urldecode";
"urldisp-happstack" = dontDistribute super."urldisp-happstack";
"urlencoded" = dontDistribute super."urlencoded";
"urlpath" = doDistribute super."urlpath_2_1_0";
"urn" = dontDistribute super."urn";
"urxml" = dontDistribute super."urxml";
"usb" = dontDistribute super."usb";
@ -7612,6 +7630,7 @@ self: super: {
"waddle" = dontDistribute super."waddle";
"wai" = doDistribute super."wai_3_0_3_0";
"wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi";
"wai-cors" = doDistribute super."wai-cors_0_2_3";
"wai-devel" = dontDistribute super."wai-devel";
"wai-digestive-functors" = dontDistribute super."wai-digestive-functors";
"wai-dispatch" = dontDistribute super."wai-dispatch";
@ -7927,6 +7946,9 @@ self: super: {
"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";

Some files were not shown because too many files have changed in this diff Show More