mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-24 20:02:58 +03:00
Merge branch 'master' into staging
Compare to Hydra nixpkgs job 1260021.
This commit is contained in:
commit
57474b7d4a
@ -72,6 +72,7 @@
|
||||
cfouche = "Chaddaï Fouché <chaddai.fouche@gmail.com>";
|
||||
chaoflow = "Florian Friesdorf <flo@chaoflow.net>";
|
||||
chattered = "Phil Scott <me@philscotted.com>";
|
||||
choochootrain = "Hurshal Patel <hurshal@imap.cc>";
|
||||
christopherpoole = "Christopher Mark Poole <mail@christopherpoole.net>";
|
||||
cleverca22 = "Michael Bishop <cleverca22@gmail.com>";
|
||||
coconnor = "Corey O'Connor <coreyoconnor@gmail.com>";
|
||||
@ -289,6 +290,7 @@
|
||||
pxc = "Patrick Callahan <patrick.callahan@latitudeengineering.com>";
|
||||
qknight = "Joachim Schiele <js@lastlog.de>";
|
||||
ragge = "Ragnar Dahlen <r.dahlen@gmail.com>";
|
||||
rasendubi = "Alexey Shmalko <rasen.dubi@gmail.com>";
|
||||
raskin = "Michael Raskin <7c6f434c@mail.ru>";
|
||||
redbaron = "Maxim Ivanov <ivanov.maxim@gmail.com>";
|
||||
refnil = "Martin Lavoie <broemartino@gmail.com>";
|
||||
|
@ -22,6 +22,9 @@ use JSON;
|
||||
use Net::Amazon::S3;
|
||||
use Nix::Store;
|
||||
|
||||
isValidPath("/nix/store/foo"); # FIXME: forces Nix::Store initialisation
|
||||
|
||||
|
||||
# S3 setup.
|
||||
my $aws_access_key_id = $ENV{'AWS_ACCESS_KEY_ID'} or die;
|
||||
my $aws_secret_access_key = $ENV{'AWS_SECRET_ACCESS_KEY'} or die;
|
||||
@ -127,6 +130,7 @@ elsif ($op eq "--expr") {
|
||||
my $url = $fetch->{url};
|
||||
my $algo = $fetch->{type};
|
||||
my $hash = $fetch->{hash};
|
||||
my $name = $fetch->{name};
|
||||
|
||||
if (defined $ENV{DEBUG}) {
|
||||
print "$url $algo $hash\n";
|
||||
@ -143,21 +147,34 @@ elsif ($op eq "--expr") {
|
||||
next;
|
||||
}
|
||||
|
||||
print STDERR "mirroring $url...\n";
|
||||
my $storePath = makeFixedOutputPath(0, $algo, $hash, $name);
|
||||
|
||||
print STDERR "mirroring $url ($storePath)...\n";
|
||||
|
||||
next if $ENV{DRY_RUN};
|
||||
|
||||
# Download the file using nix-prefetch-url.
|
||||
$ENV{QUIET} = 1;
|
||||
$ENV{PRINT_PATH} = 1;
|
||||
my $fh;
|
||||
my $pid = open($fh, "-|", "nix-prefetch-url", "--type", $algo, $url, $hash) or die;
|
||||
waitpid($pid, 0) or die;
|
||||
if ($? != 0) {
|
||||
print STDERR "failed to fetch $url: $?\n";
|
||||
next;
|
||||
# Substitute the output.
|
||||
if (!isValidPath($storePath)) {
|
||||
system("nix-store", "-r", $storePath);
|
||||
}
|
||||
|
||||
# Otherwise download the file using nix-prefetch-url.
|
||||
if (!isValidPath($storePath)) {
|
||||
$ENV{QUIET} = 1;
|
||||
$ENV{PRINT_PATH} = 1;
|
||||
my $fh;
|
||||
my $pid = open($fh, "-|", "nix-prefetch-url", "--type", $algo, $url, $hash) or die;
|
||||
waitpid($pid, 0) or die;
|
||||
if ($? != 0) {
|
||||
print STDERR "failed to fetch $url: $?\n";
|
||||
next;
|
||||
}
|
||||
<$fh>; my $storePath2 = <$fh>; chomp $storePath2;
|
||||
if ($storePath ne $storePath2) {
|
||||
warn "strange: $storePath != $storePath2\n";
|
||||
next;
|
||||
}
|
||||
}
|
||||
<$fh>; my $storePath = <$fh>; chomp $storePath;
|
||||
|
||||
uploadFile($storePath, $url);
|
||||
$mirrored++;
|
||||
|
@ -14,7 +14,7 @@ let
|
||||
operator = const [ ];
|
||||
});
|
||||
|
||||
urls = map (drv: { url = head (drv.urls or [ drv.url ]); hash = drv.outputHash; type = drv.outputHashAlgo; }) fetchurlDependencies;
|
||||
urls = map (drv: { url = head (drv.urls or [ drv.url ]); hash = drv.outputHash; type = drv.outputHashAlgo; name = drv.name; }) fetchurlDependencies;
|
||||
|
||||
fetchurlDependencies =
|
||||
filter
|
||||
|
@ -39,5 +39,5 @@ in
|
||||
vmWithBootLoader = vmWithBootLoaderConfig.system.build.vm;
|
||||
|
||||
# The following are used by nixos-rebuild.
|
||||
nixFallback = pkgs.nixUnstable;
|
||||
nixFallback = pkgs.nixUnstable.out;
|
||||
}
|
||||
|
@ -71,6 +71,7 @@
|
||||
./programs/kbdlight.nix
|
||||
./programs/light.nix
|
||||
./programs/man.nix
|
||||
./programs/mosh.nix
|
||||
./programs/nano.nix
|
||||
./programs/screen.nix
|
||||
./programs/shadow.nix
|
||||
|
@ -56,7 +56,7 @@ in
|
||||
*/
|
||||
|
||||
shellAliases = mkOption {
|
||||
default = config.environment.shellAliases // { which = "type -P"; };
|
||||
default = config.environment.shellAliases;
|
||||
description = ''
|
||||
Set of aliases for bash shell. See <option>environment.shellAliases</option>
|
||||
for an option format description.
|
||||
|
26
nixos/modules/programs/mosh.nix
Normal file
26
nixos/modules/programs/mosh.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
|
||||
cfg = config.programs.mosh;
|
||||
|
||||
in
|
||||
{
|
||||
options.programs.mosh = {
|
||||
enable = mkOption {
|
||||
description = ''
|
||||
Whether to enable mosh. Note, this will open ports in your firewall!
|
||||
'';
|
||||
default = false;
|
||||
example = true;
|
||||
type = lib.types.bool;
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [ mosh ];
|
||||
networking.firewall.allowedUDPPortRanges = [ { from = 60000; to = 61000; } ];
|
||||
};
|
||||
}
|
@ -152,7 +152,7 @@ in
|
||||
in nameValuePair
|
||||
("acme-${cert}")
|
||||
({
|
||||
description = "ACME cert renewal for ${cert} using simp_le";
|
||||
description = "Renew ACME Certificate for ${cert}";
|
||||
after = [ "network.target" ];
|
||||
serviceConfig = {
|
||||
Type = "oneshot";
|
||||
@ -192,7 +192,7 @@ in
|
||||
systemd.timers = flip mapAttrs' cfg.certs (cert: data: nameValuePair
|
||||
("acme-${cert}")
|
||||
({
|
||||
description = "timer for ACME cert renewal of ${cert}";
|
||||
description = "Renew ACME Certificate for ${cert}";
|
||||
wantedBy = [ "timers.target" ];
|
||||
timerConfig = {
|
||||
OnCalendar = cfg.renewInterval;
|
||||
|
@ -65,8 +65,8 @@ in
|
||||
|
||||
package = mkOption {
|
||||
type = types.package;
|
||||
default = pkgs.nix;
|
||||
defaultText = "pkgs.nix";
|
||||
default = pkgs.nix.out;
|
||||
defaultText = "pkgs.nix.out";
|
||||
description = ''
|
||||
This option specifies the Nix package instance to use throughout the system.
|
||||
'';
|
||||
|
@ -34,7 +34,7 @@ let
|
||||
bindir = pkgs.buildEnv {
|
||||
name = "cups-progs";
|
||||
paths =
|
||||
[ cups additionalBackends cups_filters pkgs.ghostscript ]
|
||||
[ cups.out additionalBackends cups_filters pkgs.ghostscript ]
|
||||
++ optional cfg.gutenprint gutenprint
|
||||
++ cfg.drivers;
|
||||
pathsToLink = [ "/lib/cups" "/share/cups" "/bin" ];
|
||||
@ -267,10 +267,10 @@ in
|
||||
description = "CUPS printing services";
|
||||
};
|
||||
|
||||
environment.systemPackages = [ cups ] ++ optional polkitEnabled cups-pk-helper;
|
||||
environment.systemPackages = [ cups.out ] ++ optional polkitEnabled cups-pk-helper;
|
||||
environment.etc."cups".source = "/var/lib/cups";
|
||||
|
||||
services.dbus.packages = [ cups ] ++ optional polkitEnabled cups-pk-helper;
|
||||
services.dbus.packages = [ cups.out ] ++ optional polkitEnabled cups-pk-helper;
|
||||
|
||||
# Cups uses libusb to talk to printers, and does not use the
|
||||
# linux kernel driver. If the driver is not in a black list, it
|
||||
@ -284,7 +284,7 @@ in
|
||||
wants = [ "network.target" ];
|
||||
after = [ "network.target" ];
|
||||
|
||||
path = [ cups ];
|
||||
path = [ cups.out ];
|
||||
|
||||
preStart =
|
||||
''
|
||||
|
@ -124,7 +124,7 @@ in
|
||||
${pkgs.xz.out}/lib/liblzma*.so* mr,
|
||||
${pkgs.libgcrypt.out}/lib/libgcrypt*.so* mr,
|
||||
${pkgs.libgpgerror.out}/lib/libgpg-error*.so* mr,
|
||||
${pkgs.libnghttp2.out}/lib/libnghttp2*.so* mr,
|
||||
${pkgs.nghttp2.lib}/lib/libnghttp2*.so* mr,
|
||||
${pkgs.c-ares.out}/lib/libcares*.so* mr,
|
||||
${pkgs.libcap.out}/lib/libcap*.so* mr,
|
||||
${pkgs.attr.out}/lib/libattr*.so* mr,
|
||||
|
@ -80,11 +80,8 @@ in
|
||||
description = ''
|
||||
Name of directory from which to import ZFS devices.
|
||||
|
||||
Usually /dev works. However, ZFS import may fail if a device node is renamed.
|
||||
It should therefore use stable device names, such as from /dev/disk/by-id.
|
||||
|
||||
The default remains /dev for 15.09, due to backwards compatibility concerns.
|
||||
It will change to /dev/disk/by-id in the next NixOS release.
|
||||
This should be a path under /dev containing stable names for all devices needed, as
|
||||
import may fail if device nodes are renamed concurrently with a device failing.
|
||||
'';
|
||||
};
|
||||
|
||||
|
@ -48,7 +48,7 @@ in rec {
|
||||
nixos.ova.x86_64-linux
|
||||
|
||||
#(all nixos.tests.containers)
|
||||
#(all nixos.tests.chromium.stable)
|
||||
(all nixos.tests.chromium.stable)
|
||||
(all nixos.tests.firefox)
|
||||
(all nixos.tests.firewall)
|
||||
nixos.tests.gnome3.x86_64-linux # FIXME: i686-linux
|
||||
|
@ -104,6 +104,6 @@ stdenv.mkDerivation {
|
||||
homepage = https://www.spotify.com/;
|
||||
description = "Play music from the Spotify music service";
|
||||
license = stdenv.lib.licenses.unfree;
|
||||
maintainers = with stdenv.lib.maintainers; [ eelco ftrvxmtrx ];
|
||||
maintainers = with stdenv.lib.maintainers; [ eelco ftrvxmtrx sheenobu ];
|
||||
};
|
||||
}
|
||||
|
49
pkgs/applications/backup/areca/default.nix
Normal file
49
pkgs/applications/backup/areca/default.nix
Normal file
@ -0,0 +1,49 @@
|
||||
{ stdenv, fetchurl, ant, jre, jdk, swt, acl, attr }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "areca-7.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://downloads.sourceforge.net/project/areca/areca-stable/areca-7.5/areca-7.5-src.tar.gz";
|
||||
sha256 = "1q4ha9s96c1syplxm04bh1v1gvjq16l4pa8w25w95d2ywwvyq1xb";
|
||||
};
|
||||
|
||||
sourceRoot = ".";
|
||||
|
||||
buildInputs = [ jdk ant acl attr ];
|
||||
|
||||
patches = [ ./fix-javah-bug.diff ];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace build.xml --replace "/usr/lib/java/swt.jar" "${swt}/jars/swt.jar"
|
||||
substituteInPlace build.xml --replace "gcc" "${stdenv.cc}/bin/gcc"
|
||||
substituteInPlace areca.sh --replace "bin/" ""
|
||||
substituteInPlace bin/areca_run.sh --replace "/usr/java" "${jre}/lib/openjdk"
|
||||
substituteInPlace bin/areca_run.sh --replace "/usr/lib/java/swt.jar" "${swt}/jars/swt.jar"
|
||||
|
||||
sed -i "s#^PROGRAM_DIR.*#PROGRAM_DIR=$out#g" bin/areca_run.sh
|
||||
sed -i "s#^LIBRARY_PATH.*#LIBRARY_PATH=${swt}/lib:$out/lib:${acl}/lib#g" bin/areca_run.sh
|
||||
|
||||
# https://sourceforge.net/p/areca/bugs/563/
|
||||
substituteInPlace bin/areca_run.sh --replace '[ "$JAVA_IMPL" = "java" ]' \
|
||||
'[[ "$JAVA_IMPL" = "java" || "$JAVA_IMPL" = "openjdk" ]]'
|
||||
'';
|
||||
|
||||
buildPhase = "ant";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin $out/lib $out/translations
|
||||
cp areca.sh $out/bin/areca
|
||||
cp -r bin $out
|
||||
cp -r lib $out
|
||||
cp -r translations $out
|
||||
cp COPYING $out
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.areca-backup.org/;
|
||||
description = "An Open Source personal backup solution";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ pSub ];
|
||||
};
|
||||
}
|
24
pkgs/applications/backup/areca/fix-javah-bug.diff
Normal file
24
pkgs/applications/backup/areca/fix-javah-bug.diff
Normal file
@ -0,0 +1,24 @@
|
||||
diff --git a/build.xml b/build.xml
|
||||
index 1ba08e0..9248b76 100644
|
||||
--- a/build.xml
|
||||
+++ b/build.xml
|
||||
@@ -56,10 +56,16 @@
|
||||
|
||||
<target name="compilejni" unless="isWindows">
|
||||
<description>JNI compilation task (builds libarecafs.so ... for unix-like operating systems only)</description>
|
||||
+
|
||||
<!--Generate the JNI header-->
|
||||
- <javah destdir="${root}/jni" force="yes" classpath="${root}/lib/areca.jar">
|
||||
- <class name="com.myJava.file.metadata.posix.jni.wrapper.FileAccessWrapper"/>
|
||||
- </javah>
|
||||
+ <exec executable="javah">
|
||||
+ <arg value="-d"/>
|
||||
+ <arg value="${root}/jni"/>
|
||||
+ <arg value="-force"/>
|
||||
+ <arg value="-classpath"/>
|
||||
+ <arg value="${root}/lib/areca.jar"/>
|
||||
+ <arg value="com.myJava.file.metadata.posix.jni.wrapper.FileAccessWrapper"/>
|
||||
+ </exec>
|
||||
|
||||
<!-- Compile the JNI code -->
|
||||
<exec dir="${root}/jni" executable="gcc">
|
@ -5,15 +5,15 @@
|
||||
}:
|
||||
|
||||
let
|
||||
ver_branch = "1.16";
|
||||
version = "1.16.5";
|
||||
ver_branch = "1.18";
|
||||
version = "1.18.1";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "lightdm-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "${meta.homepage}/${ver_branch}/${version}/+download/${name}.tar.xz";
|
||||
sha256 = "1qb3gvwdm2rymwn8rb1qc4gyam226xmvy2fq5rvmrcmgxblmi34c";
|
||||
sha256 = "1yl9zhn9l83bj5mbifkxfw15nqgsjzzhqcrgb81fr290wijqaj45";
|
||||
};
|
||||
|
||||
patches = [ ./fix-paths.patch ];
|
||||
|
@ -60,10 +60,10 @@ let
|
||||
|
||||
neovim = stdenv.mkDerivation rec {
|
||||
name = "neovim-${version}";
|
||||
version = "0.1.2";
|
||||
version = "0.1.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
sha256 = "128aznp2gj08bdz05ri8mqday7wcsy9yz7dw7vdgzk0pk23vjz89";
|
||||
sha256 = "1bkyfxsgb7894848nphsi6shr8bvi9z6ch0zvh2df7vkkzji8chr";
|
||||
rev = "v${version}";
|
||||
repo = "neovim";
|
||||
owner = "neovim";
|
||||
@ -134,7 +134,7 @@ let
|
||||
modifications to the core source
|
||||
- Improve extensibility with a new plugin architecture
|
||||
'';
|
||||
homepage = http://www.neovim.io;
|
||||
homepage = https://www.neovim.io;
|
||||
# "Contributions committed before b17d96 by authors who did not sign the
|
||||
# Contributor License Agreement (CLA) remain under the Vim license.
|
||||
# Contributions committed after b17d96 are licensed under Apache 2.0 unless
|
||||
|
@ -2,11 +2,11 @@
|
||||
, libXinerama, curl, libexif }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "feh-2.14";
|
||||
name = "feh-2.15.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://feh.finalrewind.org/${name}.tar.bz2";
|
||||
sha256 = "0j5wxpqccnd0hl74z2vwv25n7qnik1n2mcm2jn0c0z7cjn4wsa9q";
|
||||
sha256 = "0bnfk50y2l5zkr292l4yyws1m7ibdmr398vxj7c0djh965frpj1q";
|
||||
};
|
||||
|
||||
outputs = [ "out" "doc" ];
|
||||
|
@ -2,11 +2,12 @@
|
||||
|
||||
buildPythonApplication rec {
|
||||
namePrefix = "";
|
||||
name = "mcomix-1.01";
|
||||
name = "mcomix-${version}";
|
||||
version = "1.2.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/mcomix/${name}.tar.bz2";
|
||||
sha256 = "0k3pqbvk08kb1nr0qldaj9bc7ca6rvcycgfi2n7gqmsirq5kscys";
|
||||
sha256 = "0fzsf9pklhfs1rzwzj64c0v30b74nk94p93h371rpg45qnfiahvy";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python27Packages; [ pygtk pillow sqlite3 ];
|
||||
|
@ -1,12 +1,12 @@
|
||||
{ stdenv, fetchurl, requireFile, makeWrapper, unzip, jre }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "yEd-3.14.4";
|
||||
name = "yEd-3.15.0.2";
|
||||
|
||||
src = requireFile {
|
||||
name = "${name}.zip";
|
||||
url = "https://www.yworks.com/en/products/yfiles/yed/";
|
||||
sha256 = "0pm271ss6cq2s6cv9ww92haaq2abkjxd9dvc8d72h6af5awv8xy6";
|
||||
sha256 = "c60e4868f267303ee8b6fc2587beb4cc846f32bd8a6a557b77e01f0d8039aa4d";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ unzip makeWrapper ];
|
||||
|
@ -7,6 +7,7 @@ buildPerlPackage {
|
||||
|
||||
preConfigure = "touch Makefile.PL";
|
||||
doCheck = false;
|
||||
outputs = [ "out" "man" ];
|
||||
|
||||
patchPhase = ''
|
||||
sed -e 's|^update_script|#update_script|' \
|
||||
@ -15,10 +16,11 @@ buildPerlPackage {
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
mkdir -p $out/bin $out/share/man/man1
|
||||
cp get_iplayer $out/bin
|
||||
wrapProgram $out/bin/get_iplayer --suffix PATH : ${ffmpeg.bin}/bin:${flvstreamer}/bin:${vlc}/bin:${rtmpdump}/bin --prefix PERL5LIB : $PERL5LIB
|
||||
'';
|
||||
cp get_iplayer.1 $out/share/man/man1
|
||||
'';
|
||||
|
||||
src = fetchurl {
|
||||
url = ftp://ftp.infradead.org/pub/get_iplayer/get_iplayer-2.94.tar.gz;
|
||||
|
@ -5,11 +5,11 @@ assert withBuildColors -> ncurses != null;
|
||||
with stdenv.lib;
|
||||
stdenv.mkDerivation rec {
|
||||
name = "girara-${version}";
|
||||
version = "0.2.5";
|
||||
version = "0.2.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://pwmt.org/projects/girara/download/${name}.tar.gz";
|
||||
sha256 = "14m8mfbck49ldwi1w2i47bbg5c9daglcmvz9v2g1hnrq8k8g5x2w";
|
||||
sha256 = "03wsxj27hvcbs3x96nah7j3paclifwlfag8kdph4kldl48srp9pb";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
|
37
pkgs/applications/misc/golden-cheetah/default.nix
Normal file
37
pkgs/applications/misc/golden-cheetah/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ stdenv, fetchurl, qtbase, qtsvg, qtserialport, qtwebkit, qtmultimedia
|
||||
, qttools, yacc, flex, zlib, config, makeQtWrapper }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "golden-cheetah-${version}";
|
||||
version = "V4.0-DEV1603";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/GoldenCheetah/GoldenCheetah/archive/${version}.tar.gz";
|
||||
sha256 = "12knlzqmq8b3nyl3kvcsnzrbjksgd83mzwzj97wccyfiffjl4wah";
|
||||
};
|
||||
buildInputs = [
|
||||
qtbase qtsvg qtserialport qtwebkit qtmultimedia qttools yacc flex zlib
|
||||
];
|
||||
nativeBuildInputs = [ makeQtWrapper ];
|
||||
configurePhase = ''
|
||||
runHook preConfigure
|
||||
cp src/gcconfig.pri.in src/gcconfig.pri
|
||||
cp qwt/qwtconfig.pri.in qwt/qwtconfig.pri
|
||||
echo 'QMAKE_LRELEASE = ${qttools}/bin/lrelease' >> src/gcconfig.pri
|
||||
sed -i -e '21,23d' qwt/qwtconfig.pri # Removed forced installation to /usr/local
|
||||
qmake PREFIX=$out build.pro
|
||||
'' + (
|
||||
with (config.golden-cheetah);
|
||||
stdenv.lib.optionalString (dropbox-client-id != null && dropbox-client-secret != null) ''
|
||||
echo 'DEFINES += GC_DROPBOX_CLIENT_ID=\\\"${config.golden-cheetah.dropbox-client-id}\\\"' >> src/gcconfig.pri
|
||||
echo 'DEFINES += GC_DROPBOX_CLIENT_SECRET=\\\"${config.golden-cheetah.dropbox-client-secret}\\\"' >> src/gcconfig.pri
|
||||
'');
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
cp src/GoldenCheetah $out/bin
|
||||
wrapQtProgram $out/bin/GoldenCheetah --set LD_LIBRARY_PATH "${zlib.out}/lib" # patchelf doesn't seem to work
|
||||
'';
|
||||
meta = {
|
||||
description = "Performance software for cyclists, runners and triathletes";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.ocharles ];
|
||||
};
|
||||
}
|
@ -2,11 +2,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gpsprune-${version}";
|
||||
version = "18.2";
|
||||
version = "18.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://activityworkshop.net/software/gpsprune/gpsprune_${version}.jar";
|
||||
sha256 = "12zwwiy0jfrwvgrb110flx4b7k3sp3ivx8ijjymdbbk48xil93l2";
|
||||
sha256 = "1sas5n4k3afryg3k6y40w39kifs3d0yrnnk46nqp7axs4ay2aqim";
|
||||
};
|
||||
|
||||
phases = [ "installPhase" ];
|
||||
|
@ -1,12 +1,12 @@
|
||||
{ stdenv, fetchurl, pkgconfig, gtk, girara, ncurses, gettext, docutils, file, makeWrapper, zathura_icon, sqlite, glib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "0.3.5";
|
||||
version = "0.3.6";
|
||||
name = "zathura-core-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://pwmt.org/projects/zathura/download/zathura-${version}.tar.gz";
|
||||
sha256 = "031kdr10065q14nixc4p58c4rgvrqcmn9x39b19h2357kzabaw9a";
|
||||
sha256 = "0fyb5hak0knqvg90rmdavwcmilhnrwgg1s5ykx9wd3skbpi8nsh8";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig file gtk girara gettext makeWrapper sqlite glib ];
|
||||
|
@ -2,7 +2,7 @@
|
||||
, jinja2, pygments, pyyaml, pypeg2, gst-plugins-base, gst-plugins-good
|
||||
, gst-plugins-bad, gst-libav, wrapGAppsHook, glib_networking }:
|
||||
|
||||
let version = "0.6.0"; in
|
||||
let version = "0.6.1"; in
|
||||
|
||||
buildPythonApplication rec {
|
||||
name = "qutebrowser-${version}";
|
||||
@ -10,7 +10,7 @@ buildPythonApplication rec {
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/The-Compiler/qutebrowser/releases/download/v${version}/${name}.tar.gz";
|
||||
sha256 = "1vf9gh1f12wza72y3yqj568h2wsm7wfvjjs6qsh6apw5mgjysz91";
|
||||
sha256 = "1xb95yjc390h7f75l1jk252qiwcamgz2bls2978mmjkhf5hm3jm0";
|
||||
};
|
||||
|
||||
# Needs tox
|
||||
|
@ -40,7 +40,9 @@ let
|
||||
++ (overrides.configureFlags or [ ]);
|
||||
|
||||
configurePhase = ''
|
||||
runHook preConfigure
|
||||
qmake $configureFlags DEFINES+="PLUGIN_PATH=$out/lib"
|
||||
runHook postConfigure
|
||||
'';
|
||||
|
||||
makeFlags = [ "release" ];
|
||||
|
@ -1,11 +0,0 @@
|
||||
--- a/cmake/modules/RootBuildOptions.cmake 1969-12-31 20:30:01.000000000 -0330
|
||||
+++ b/cmake/modules/RootBuildOptions.cmake 2014-01-10 14:09:29.424937408 -0330
|
||||
@@ -149,7 +149,7 @@
|
||||
|
||||
#---General Build options----------------------------------------------------------------------
|
||||
# use, i.e. don't skip the full RPATH for the build tree
|
||||
-set(CMAKE_SKIP_BUILD_RPATH FALSE)
|
||||
+set(CMAKE_SKIP_BUILD_RPATH TRUE)
|
||||
# when building, don't use the install RPATH already (but later on when installing)
|
||||
set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
|
||||
# add the automatically determined parts of the RPATH
|
@ -1,36 +1,26 @@
|
||||
{ stdenv, fetchurl, fetchpatch, cmake, pkgconfig, mesa, gfortran
|
||||
, libX11,libXpm, libXft, libXext, zlib }:
|
||||
{ stdenv, fetchurl, fetchpatch, cmake, pkgconfig, python
|
||||
, libX11, libXpm, libXft, libXext, zlib, lzma }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "root-${version}";
|
||||
version = "5.34.15";
|
||||
version = "6.04.16";
|
||||
|
||||
src = fetchurl {
|
||||
url = "ftp://root.cern.ch/root/root_v${version}.source.tar.gz";
|
||||
sha256 = "1bkiggcyya39a794d3d2rzzmmkbdymf86hbqhh0l1pl4f38xvp6i";
|
||||
url = "https://root.cern.ch/download/root_v${version}.source.tar.gz";
|
||||
sha256 = "0f58dg83aqhggkxmimsfkd1qyni2vhmykq4qa89cz6jr9p73i1vm";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake pkgconfig gfortran mesa libX11 libXpm libXft libXext zlib ];
|
||||
buildInputs = [ cmake pkgconfig python libX11 libXpm libXft libXext zlib lzma ];
|
||||
|
||||
NIX_CFLAGS_LINK = "-lX11";
|
||||
|
||||
# CMAKE_INSTALL_RPATH_USE_LINK_PATH is set to FALSE in
|
||||
# <rootsrc>/cmake/modules/RootBuildOptions.cmake.
|
||||
# This patch sets it to TRUE.
|
||||
patches = [
|
||||
./cmake.patch
|
||||
(fetchpatch {
|
||||
name = "fix-tm_t-member.diff";
|
||||
url = "https://github.com/root-mirror/root/commit/"
|
||||
+ "08b08412bafc24fa635b0fdb832097a3aa2fa1d2.diff";
|
||||
sha256 = "0apbp51pk8471gl06agx3i88dn76p6gpkgf1ssfhcyam0bjl8907";
|
||||
})
|
||||
];
|
||||
cmakeFlags = [
|
||||
"-Drpath=ON"
|
||||
]
|
||||
++ stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.cc.libc}/include";
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
homepage = "http://root.cern.ch/drupal/";
|
||||
homepage = "https://root.cern.ch/";
|
||||
description = "A data analysis framework";
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
|
@ -4,17 +4,17 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "makemkv-${ver}";
|
||||
ver = "1.9.9";
|
||||
ver = "1.9.10";
|
||||
builder = ./builder.sh;
|
||||
|
||||
src_bin = fetchurl {
|
||||
url = "http://www.makemkv.com/download/makemkv-bin-${ver}.tar.gz";
|
||||
sha256 = "1rsmsfyxjh18bdj93gy7whm4j6k1098zfak8napxsqfli7dyijb6";
|
||||
sha256 = "1i5nqk5gyin6rgvc0fy96pdzq0wsmfvsm6w9mfsibj0yrfqnhi6r";
|
||||
};
|
||||
|
||||
src_oss = fetchurl {
|
||||
url = "http://www.makemkv.com/download/makemkv-oss-${ver}.tar.gz";
|
||||
sha256 = "070x8l88nv70abd9gy8jchs09mh09x6psjc0zs4vplk61cbqk3b0";
|
||||
sha256 = "1ypc2hisx71kpmjwxnlq6zh4q6r2i1p32gapb0ampjflcjyvx5dk";
|
||||
};
|
||||
|
||||
buildInputs = [openssl qt4 mesa zlib pkgconfig libav];
|
||||
|
@ -27,7 +27,9 @@ stdenv.mkDerivation rec {
|
||||
|
||||
dontStrip = true;
|
||||
|
||||
DOCKER_BUILDTAGS = [ "journald" ];
|
||||
DOCKER_BUILDTAGS = [ "journald" ]
|
||||
++ optional (btrfs-progs == null) "exclude_graphdriver_btrfs"
|
||||
++ optional (devicemapper == null) "exclude_graphdriver_devicemapper";
|
||||
|
||||
buildPhase = ''
|
||||
patchShebangs .
|
||||
|
@ -49,8 +49,11 @@ runCommand name
|
||||
pkgs = builtins.toJSON (map (drv: {
|
||||
paths =
|
||||
# First add the usual output(s): respect if user has chosen explicitly,
|
||||
# and otherwise use `meta.outputsToInstall` (guaranteed to exist by stdenv).
|
||||
(if (drv.outputUnspecified or false)
|
||||
# and otherwise use `meta.outputsToInstall`. The attribute is guaranteed
|
||||
# to exist in mkDerivation-created cases. The other cases (e.g. runCommand)
|
||||
# aren't expected to have multiple outputs.
|
||||
(if drv.outputUnspecified or false
|
||||
&& drv.meta.outputsToInstall or null != null
|
||||
then map (outName: drv.${outName}) drv.meta.outputsToInstall
|
||||
else [ drv ])
|
||||
# Add any extra outputs specified by the caller of `buildEnv`.
|
||||
|
@ -61,7 +61,7 @@ let
|
||||
drvName = drv:
|
||||
discard (substring 33 (stringLength (builtins.baseNameOf drv)) (builtins.baseNameOf drv));
|
||||
|
||||
rewriteHashes = drv: hashes: runCommand (drvName drv) { nixStore = "${nix}/bin/nix-store"; } ''
|
||||
rewriteHashes = drv: hashes: runCommand (drvName drv) { nixStore = "${nix.out}/bin/nix-store"; } ''
|
||||
$nixStore --dump ${drv} | sed 's|${baseNameOf drv}|'$(basename $out)'|g' | sed -e ${
|
||||
concatStringsSep " -e " (mapAttrsToList (name: value:
|
||||
"'s|${baseNameOf name}|${baseNameOf value}|g'"
|
||||
|
41
pkgs/data/fonts/helvetica-neue-lt-std/default.nix
Normal file
41
pkgs/data/fonts/helvetica-neue-lt-std/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{ stdenv, fetchurl, unzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "helvetica-neue-lt-std-${version}";
|
||||
version = "2013.06.07"; # date of most recent file in distribution
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.ephifonts.com/downloads/helvetica-neue-lt-std.zip";
|
||||
sha256 = "0nrjdj2a11dr6d3aihvjxzrkdi0wq6f2bvaiimi5iwmpyz80n0h6";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ unzip ];
|
||||
|
||||
phases = [ "unpackPhase" "installPhase" ];
|
||||
|
||||
sourceRoot = "Helvetica Neue LT Std";
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/fonts/opentype
|
||||
cp -v *.otf $out/share/fonts/opentype
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://www.ephifonts.com/free-helvetica-font-helvetica-neue-lt-std.html;
|
||||
description = "Helvetica Neue LT Std font";
|
||||
longDescription = ''
|
||||
Helvetica Neue Lt Std is one of the most highly rated and complete
|
||||
fonts of all time. Developed in early 1983, this font has well
|
||||
camouflaged heights and weights. The structure of the word is uniform
|
||||
throughout all the characters.
|
||||
|
||||
The legibility with Helvetica Neue LT Std is said to have improved as
|
||||
opposed to other fonts. The tail of it is much longer in this
|
||||
font. The numbers are well spaced and defined with high accuracy. The
|
||||
punctuation marks are heavily detailed as well.
|
||||
'';
|
||||
license = stdenv.lib.licenses.unfree;
|
||||
maintainers = [ stdenv.lib.maintainers.romildo ];
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
@ -8,26 +8,26 @@ let
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "geolite-legacy-${version}";
|
||||
version = "2016-02-29";
|
||||
version = "2016-04-19";
|
||||
|
||||
srcGeoIP = fetchDB
|
||||
"GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz"
|
||||
"00y8j0jxk60wscm6wiz3mmmj5xfvwqnmxjm2ar8ngkl8mxzl12gm";
|
||||
"0g34nwilhim73f0qp0yq3lfx54c42wy70ra4dkmwlfddyq3ln0xd";
|
||||
srcGeoIPv6 = fetchDB
|
||||
"GeoIPv6.dat.gz" "GeoIPv6.dat.gz"
|
||||
"0l6wv246kzm63qqmqr9lzpbvbanfwfkvn9bj34jn2djp4rfrkjrf";
|
||||
"12k4nmfblm9c7kj4v7cyl6sgfgdfv2jdx4fl7nxfzpk1km7yc5na";
|
||||
srcGeoLiteCity = fetchDB
|
||||
"GeoLiteCity.dat.xz" "GeoIPCity.dat.xz"
|
||||
"1095jar3vyax0gmj7wc0w28rpjmq2j1b6wk5yfaghyl87mad5q0f";
|
||||
"1l6pnlapc9ky3k6wznlhi013i7r3i68x3b5bmkgbvnxadjjdwszw";
|
||||
srcGeoLiteCityv6 = fetchDB
|
||||
"GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz" "GeoIPCityv6.dat.gz"
|
||||
"0fnlznn04lpkkd7sy9r9kdl3fcp8ix7msdrncwgz26dh537ml32z";
|
||||
"11igx6r0fypih5i3f0mrcv044pivnl45mq6pkq81i81cv28hfcn8";
|
||||
srcGeoIPASNum = fetchDB
|
||||
"asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz"
|
||||
"10i4c8irvh9shbl3y0s0ffkm71vf3r290fvxjx20snqa558hkvib";
|
||||
"0xf5ciqclk9pb82kz9zkv15wb8vm32i456jcwkf6rjv18h3wjl74";
|
||||
srcGeoIPASNumv6 = fetchDB
|
||||
"asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz"
|
||||
"1rvbjrj98pqj9w5ql5j49b3h40496g6aralpnz1gj21v6dfrd55n";
|
||||
"0bgxw4xdkvpwhg7fdillnk8qk14hgld4icvp81d15pz4j0b9jwq9";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "GeoLite Legacy IP geolocation databases";
|
||||
|
@ -2,16 +2,16 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "tzdata-${version}";
|
||||
version = "2016c";
|
||||
version = "2016d";
|
||||
|
||||
srcs =
|
||||
[ (fetchurl {
|
||||
url = "http://www.iana.org/time-zones/repository/releases/tzdata${version}.tar.gz";
|
||||
sha256 = "0j1dk830rkr1pijfac5wkdifi47k28mmvfys6z07l07jws0xj047";
|
||||
sha256 = "1d51y1cmp2mhfmk51pagw7p15vrnf269xn1bb19n1mzgl3xlsmfr";
|
||||
})
|
||||
(fetchurl {
|
||||
url = "http://www.iana.org/time-zones/repository/releases/tzcode${version}.tar.gz";
|
||||
sha256 = "05m4ql1x3b4bmlg0vv1ibz2128mkk4xxnixagcmwlnwkhva1njrl";
|
||||
sha256 = "1jp06jd3vpsh38549xnx0wnxadrnwvvcg7vnwh4y3xxfhxpkvwx8";
|
||||
})
|
||||
];
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{ stdenv, intltool, fetchurl, libxml2, upower
|
||||
, pkgconfig, gtk3, glib
|
||||
, bash, makeWrapper, itstool, vala, sqlite, libxslt
|
||||
, pkgconfig, gtk3, glib, dconf
|
||||
, bash, wrapGAppsHook, itstool, vala, sqlite, libxslt
|
||||
, gnome3, librsvg, gdk_pixbuf, file, libnotify
|
||||
, evolution_data_server, gst_all_1, poppler
|
||||
, icu, taglib, libjpeg, libtiff, giflib, libcue
|
||||
@ -8,41 +8,36 @@
|
||||
, libpng, libexif, libgsf, libuuid, bzip2 }:
|
||||
|
||||
let
|
||||
majorVersion = "1.4";
|
||||
majorVersion = "1.8";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "tracker-${majorVersion}.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/tracker/${majorVersion}/${name}.tar.xz";
|
||||
sha256 = "1ssisbix7ib3d6bgx9s675gx6ayy68jq2srhpzv038mkbaskaz68";
|
||||
sha256 = "0zchaahk4w7dwanqk1vx0qgnyrlzlp81krwawfx3mv5zffik27x1";
|
||||
};
|
||||
|
||||
propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ];
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0 -I${poppler}/include/poppler";
|
||||
nativeBuildInputs = [ pkgconfig wrapGAppsHook ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
buildInputs = [ vala pkgconfig gtk3 glib intltool itstool libxml2
|
||||
buildInputs = [ vala gtk3 glib dconf intltool itstool libxml2
|
||||
bzip2 gnome3.totem-pl-parser libxslt
|
||||
gnome3.gsettings_desktop_schemas makeWrapper file
|
||||
gnome3.gsettings_desktop_schemas wrapGAppsHook file
|
||||
gdk_pixbuf gnome3.defaultIconTheme librsvg sqlite
|
||||
upower libnotify evolution_data_server gnome3.libgee
|
||||
gst_all_1.gstreamer gst_all_1.gst-plugins-base flac
|
||||
poppler icu taglib libjpeg libtiff giflib libvorbis
|
||||
exempi networkmanager libpng libexif libgsf libuuid ];
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace src/libtracker-sparql/Makefile.in --replace "--shared-library=libtracker-sparql" "--shared-library=$out/lib/libtracker-sparql"
|
||||
'';
|
||||
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0 -I${poppler.dev}/include/poppler";
|
||||
|
||||
preFixup = ''
|
||||
for f in $out/bin/* $out/libexec/*; do
|
||||
wrapProgram $f \
|
||||
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \
|
||||
--prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
|
||||
done
|
||||
enableParallelBuilding = true;
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace src/libtracker-sparql/Makefile.in \
|
||||
--replace "--shared-library=libtracker-sparql" "--shared-library=$out/lib/libtracker-sparql"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
@ -40,6 +40,7 @@ let
|
||||
gwenview = callPackage ./gwenview.nix {};
|
||||
kate = callPackage ./kate.nix {};
|
||||
kcalc = callPackage ./kcalc.nix {};
|
||||
kcolorchooser = callPackage ./kcolorchooser.nix {};
|
||||
kdegraphics-thumbnailers = callPackage ./kdegraphics-thumbnailers.nix {};
|
||||
kdenetwork-filesharing = callPackage ./kdenetwork-filesharing.nix {};
|
||||
kgpg = callPackage ./kgpg.nix { inherit (pkgs.kde4) kdepimlibs; };
|
||||
|
15
pkgs/desktops/kde-5/applications-15.12/kcolorchooser.nix
Normal file
15
pkgs/desktops/kde-5/applications-15.12/kcolorchooser.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{ kdeApp, lib
|
||||
, automoc4, cmake, kdelibs
|
||||
}:
|
||||
|
||||
kdeApp {
|
||||
name = "kcolorchooser";
|
||||
|
||||
nativeBuildInputs = [ automoc4 cmake ];
|
||||
buildInputs = [ kdelibs ];
|
||||
|
||||
meta = {
|
||||
license = with lib.licenses; [ mit ];
|
||||
maintainers = [ lib.maintainers.ttuegel ];
|
||||
};
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
{stdenv, fetchurl
|
||||
, libtool, autoconf, automake
|
||||
, gmp, mpfr, libffi
|
||||
, gmp, mpfr, libffi, makeWrapper
|
||||
, noUnicode ? false,
|
||||
}:
|
||||
let
|
||||
@ -14,7 +14,7 @@ let
|
||||
sha256="16ab8qs3awvdxy8xs8jy82v8r04x4wr70l9l2j45vgag18d2nj1d";
|
||||
};
|
||||
buildInputs = [
|
||||
libtool autoconf automake
|
||||
libtool autoconf automake makeWrapper
|
||||
];
|
||||
propagatedBuildInputs = [
|
||||
libffi gmp mpfr
|
||||
@ -37,6 +37,9 @@ stdenv.mkDerivation {
|
||||
;
|
||||
postInstall = ''
|
||||
sed -e 's/@[-a-zA-Z_]*@//g' -i $out/bin/ecl-config
|
||||
wrapProgram "$out/bin/ecl" \
|
||||
--prefix NIX_LDFLAGS ' ' "-L${gmp.lib or gmp.out or gmp}/lib" \
|
||||
--prefix NIX_LDFLAGS ' ' "-L${libffi.lib or libffi.out or libffi}/lib"
|
||||
'';
|
||||
meta = {
|
||||
inherit (s) version;
|
||||
|
@ -1,11 +1,11 @@
|
||||
{ stdenv, callPackage }:
|
||||
|
||||
callPackage ./generic.nix {
|
||||
shortVersion = "1.6.0";
|
||||
shortVersion = "1.7.0";
|
||||
isRelease = true;
|
||||
forceBundledLLVM = false;
|
||||
configureFlags = [ "--release-channel=stable" ];
|
||||
srcSha = "1dvpiswl0apknizsz9bcrjnc4c43ys191a1b9gm3569xdlmxr36w";
|
||||
srcSha = "05f4v6sfmvkwsv6a7jp9sxsm84s0gdvqyf2wwdi1ilg9k8nxzgd4";
|
||||
|
||||
/* Rust is bootstrapped from an earlier built version. We need
|
||||
to fetch these earlier versions, which vary per platform.
|
||||
@ -15,12 +15,12 @@ callPackage ./generic.nix {
|
||||
for the tagged release and not a snapshot in the current HEAD.
|
||||
*/
|
||||
|
||||
snapshotHashLinux686 = "e2553bf399cd134a08ef3511a0a6ab0d7a667216";
|
||||
snapshotHashLinux64 = "7df8ba9dec63ec77b857066109d4b6250f3d222f";
|
||||
snapshotHashDarwin686 = "29750870c82a0347f8b8b735a4e2e0da26f5098d";
|
||||
snapshotHashDarwin64 = "c9f2c588238b4c6998190c3abeb33fd6164099a2";
|
||||
snapshotDate = "2015-08-11";
|
||||
snapshotRev = "1af31d4";
|
||||
snapshotHashLinux686 = "a09c4a4036151d0cb28e265101669731600e01f2";
|
||||
snapshotHashLinux64 = "97e2a5eb8904962df8596e95d6e5d9b574d73bf4";
|
||||
snapshotHashDarwin686 = "ca52d2d3ba6497ed007705ee3401cf7efc136ca1";
|
||||
snapshotHashDarwin64 = "3c44ffa18f89567c2b81f8d695e711c86d81ffc7";
|
||||
snapshotDate = "2015-12-18";
|
||||
snapshotRev = "3391630";
|
||||
|
||||
patches = [ ./patches/remove-uneeded-git.patch ]
|
||||
++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
|
||||
|
@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchurl, fetchgit, fetchzip, file, python2, tzdata, procps
|
||||
, llvmPackages_37, jemalloc, ncurses, darwin, binutils
|
||||
, llvm, jemalloc, ncurses, darwin, binutils
|
||||
|
||||
, shortVersion, isRelease
|
||||
, forceBundledLLVM ? false
|
||||
@ -12,8 +12,6 @@
|
||||
, patches
|
||||
} @ args:
|
||||
|
||||
assert !stdenv.isFreeBSD;
|
||||
|
||||
/* Rust's build process has a few quirks :
|
||||
|
||||
- The Rust compiler is written is Rust, so it requires a bootstrap
|
||||
@ -39,7 +37,7 @@ let version = if isRelease then
|
||||
|
||||
procps = if stdenv.isDarwin then darwin.ps else args.procps;
|
||||
|
||||
llvmShared = llvmPackages_37.llvm.override { enableSharedLibraries = true; };
|
||||
llvmShared = llvm.override { enableSharedLibraries = true; };
|
||||
|
||||
platform = if stdenv.system == "i686-linux"
|
||||
then "linux-i386"
|
||||
@ -66,7 +64,7 @@ let version = if isRelease then
|
||||
description = "A safe, concurrent, practical language";
|
||||
maintainers = with maintainers; [ madjar cstrahan wizeman globin havvy wkennington ];
|
||||
license = [ licenses.mit licenses.asl20 ];
|
||||
platforms = platforms.linux;
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
|
||||
snapshotHash = if stdenv.system == "i686-linux"
|
||||
|
@ -106,7 +106,7 @@ go.stdenv.mkDerivation (
|
||||
echo "$subPackages" | sed "s,\(^\| \),\1$goPackagePath/,g"
|
||||
else
|
||||
pushd go/src >/dev/null
|
||||
find "$goPackagePath" -type f -name \*$type.go -exec dirname {} \; | sort | uniq
|
||||
find "$goPackagePath" -type f -name \*$type.go -exec dirname {} \; | grep -v "/vendor/" | sort | uniq
|
||||
popd >/dev/null
|
||||
fi
|
||||
}
|
||||
|
@ -77,4 +77,10 @@ self: super: {
|
||||
# Needs void on pre 7.10.x compilers.
|
||||
conduit = addBuildDepend super.conduit self.void;
|
||||
|
||||
# Needs tagged on pre 7.6.x compilers.
|
||||
reflection = addBuildDepend super.reflection self.tagged;
|
||||
|
||||
# Needs nats on pre 7.6.x compilers.
|
||||
semigroups = addBuildDepend super.semigroups self.nats;
|
||||
|
||||
}
|
||||
|
@ -78,4 +78,10 @@ self: super: {
|
||||
# Needs void on pre 7.10.x compilers.
|
||||
conduit = addBuildDepend super.conduit self.void;
|
||||
|
||||
# Needs tagged on pre 7.6.x compilers.
|
||||
reflection = addBuildDepend super.reflection self.tagged;
|
||||
|
||||
# Needs nats on pre 7.6.x compilers.
|
||||
semigroups = addBuildDepend super.semigroups self.nats;
|
||||
|
||||
}
|
||||
|
@ -89,4 +89,10 @@ self: super: {
|
||||
# Needs void on pre 7.10.x compilers.
|
||||
conduit = addBuildDepend super.conduit self.void;
|
||||
|
||||
# Needs tagged on pre 7.6.x compilers.
|
||||
reflection = addBuildDepend super.reflection self.tagged;
|
||||
|
||||
# Needs nats on pre 7.6.x compilers.
|
||||
semigroups = addBuildDepend super.semigroups self.nats;
|
||||
|
||||
}
|
||||
|
@ -49,9 +49,6 @@ self: super: {
|
||||
# Deviate from Stackage here to fix lots of builds.
|
||||
transformers-compat = self.transformers-compat_0_5_1_4;
|
||||
|
||||
# https://github.com/sol/doctest/issues/125
|
||||
doctest = self.doctest_0_11_0;
|
||||
|
||||
# No modules defined for this compiler.
|
||||
fail = dontHaddock super.fail;
|
||||
|
||||
|
@ -1185,10 +1185,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1365,6 +1367,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1391,6 +1394,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1616,6 +1620,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1799,6 +1804,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2208,6 +2214,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2537,6 +2544,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4888,6 +4896,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5768,6 +5779,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13";
|
||||
@ -6375,6 +6387,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6596,6 +6609,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6829,12 +6843,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7461,6 +7477,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7890,6 +7907,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -8008,7 +8026,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9251,6 +9271,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1185,10 +1185,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1365,6 +1367,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1391,6 +1394,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1616,6 +1620,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1799,6 +1804,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2208,6 +2214,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2537,6 +2544,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4888,6 +4896,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5768,6 +5779,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13";
|
||||
@ -6375,6 +6387,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6596,6 +6609,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6829,12 +6843,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7461,6 +7477,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7890,6 +7907,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -8008,7 +8026,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9251,6 +9271,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1185,10 +1185,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1365,6 +1367,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1391,6 +1394,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1616,6 +1620,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1799,6 +1804,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2208,6 +2214,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2537,6 +2544,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4888,6 +4896,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5768,6 +5779,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13";
|
||||
@ -6375,6 +6387,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6596,6 +6609,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6829,12 +6843,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7461,6 +7477,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7890,6 +7907,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -8008,7 +8026,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9251,6 +9271,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1185,10 +1185,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1365,6 +1367,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1391,6 +1394,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1616,6 +1620,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1799,6 +1804,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2208,6 +2214,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2537,6 +2544,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4888,6 +4896,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5768,6 +5779,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13";
|
||||
@ -6375,6 +6387,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6596,6 +6609,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6829,12 +6843,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7461,6 +7477,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7890,6 +7907,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -8008,7 +8026,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9251,6 +9271,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1185,10 +1185,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1365,6 +1367,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1391,6 +1394,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1616,6 +1620,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1799,6 +1804,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2208,6 +2214,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2537,6 +2544,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4885,6 +4893,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5765,6 +5776,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13";
|
||||
@ -6372,6 +6384,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6593,6 +6606,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1_2";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6826,12 +6840,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7457,6 +7473,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7886,6 +7903,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -8004,7 +8022,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9247,6 +9267,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1185,10 +1185,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1365,6 +1367,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1391,6 +1394,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1616,6 +1620,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1799,6 +1804,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2208,6 +2214,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2537,6 +2544,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4885,6 +4893,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5765,6 +5776,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13";
|
||||
@ -6372,6 +6384,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6593,6 +6606,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1_2";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6826,12 +6840,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7457,6 +7473,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7886,6 +7903,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -8004,7 +8022,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9247,6 +9267,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1184,10 +1184,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1364,6 +1366,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1390,6 +1393,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1615,6 +1619,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1798,6 +1803,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2207,6 +2213,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2536,6 +2543,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4883,6 +4891,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5763,6 +5774,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13";
|
||||
@ -6370,6 +6382,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6591,6 +6604,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1_3";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6824,12 +6838,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7454,6 +7470,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7883,6 +7900,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -8001,7 +8019,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9242,6 +9262,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1184,10 +1184,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1364,6 +1366,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1390,6 +1393,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1615,6 +1619,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1798,6 +1803,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_4_0_2";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2207,6 +2213,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2536,6 +2543,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4883,6 +4891,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5763,6 +5774,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13";
|
||||
@ -6370,6 +6382,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6591,6 +6604,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1_3";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6824,12 +6838,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7454,6 +7470,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7883,6 +7900,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -8001,7 +8019,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9242,6 +9262,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1181,10 +1181,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1361,6 +1363,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1387,6 +1390,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1612,6 +1616,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1794,6 +1799,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2201,6 +2207,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2529,6 +2536,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4874,6 +4882,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5754,6 +5765,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13";
|
||||
@ -6361,6 +6373,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6582,6 +6595,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1_3";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6815,12 +6829,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7444,6 +7460,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7872,6 +7889,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7990,7 +8008,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9230,6 +9250,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1181,10 +1181,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1361,6 +1363,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1387,6 +1390,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1612,6 +1616,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1794,6 +1799,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2200,6 +2206,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2527,6 +2534,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4868,6 +4876,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5748,6 +5759,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6354,6 +6366,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6575,6 +6588,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1_4";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6808,12 +6822,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7437,6 +7453,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7864,6 +7881,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7981,7 +7999,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9217,6 +9237,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1180,10 +1180,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1360,6 +1362,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1386,6 +1389,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1611,6 +1615,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1793,6 +1798,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2197,6 +2203,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2523,6 +2530,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4857,6 +4865,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5731,6 +5742,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6335,6 +6347,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6555,6 +6568,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1_7";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6788,12 +6802,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7416,6 +7432,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7841,6 +7858,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7958,7 +7976,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9187,6 +9207,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1180,10 +1180,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1360,6 +1362,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1386,6 +1389,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1611,6 +1615,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1793,6 +1798,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2197,6 +2203,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2523,6 +2530,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4856,6 +4864,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5727,6 +5738,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6331,6 +6343,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6551,6 +6564,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1_7";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6784,12 +6798,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7412,6 +7428,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7837,6 +7854,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7954,7 +7972,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9183,6 +9203,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1180,10 +1180,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1360,6 +1362,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1386,6 +1389,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1611,6 +1615,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1793,6 +1798,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2197,6 +2203,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2523,6 +2530,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4855,6 +4863,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5726,6 +5737,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6330,6 +6342,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6550,6 +6563,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1_7";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6783,12 +6797,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7411,6 +7427,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7836,6 +7853,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7953,7 +7971,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9182,6 +9202,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1180,10 +1180,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1360,6 +1362,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1386,6 +1389,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1611,6 +1615,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1793,6 +1798,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2197,6 +2203,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2523,6 +2530,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4854,6 +4862,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5725,6 +5736,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6329,6 +6341,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6549,6 +6562,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_2";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6782,12 +6796,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7410,6 +7426,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7835,6 +7852,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7952,7 +7970,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9180,6 +9200,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1179,10 +1179,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1359,6 +1361,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1385,6 +1388,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1609,6 +1613,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1791,6 +1796,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2195,6 +2201,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2520,6 +2527,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4851,6 +4859,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5722,6 +5733,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6325,6 +6337,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6545,6 +6558,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_2";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6778,12 +6792,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7405,6 +7421,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7830,6 +7847,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7947,7 +7965,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9175,6 +9195,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1178,10 +1178,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1358,6 +1360,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1384,6 +1387,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1608,6 +1612,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1790,6 +1795,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2193,6 +2199,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2517,6 +2524,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4847,6 +4855,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5718,6 +5729,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6319,6 +6331,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6539,6 +6552,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_2";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6772,12 +6786,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7398,6 +7414,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7823,6 +7840,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7939,7 +7957,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9165,6 +9185,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1181,10 +1181,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1361,6 +1363,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1387,6 +1390,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1612,6 +1616,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1794,6 +1799,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2199,6 +2205,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2525,6 +2532,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4865,6 +4873,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5745,6 +5756,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6351,6 +6363,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6571,6 +6584,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1_4";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6804,12 +6818,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7432,6 +7448,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7858,6 +7875,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7975,7 +7993,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9211,6 +9231,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1180,10 +1180,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1360,6 +1362,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1386,6 +1389,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1611,6 +1615,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1793,6 +1798,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2198,6 +2204,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2524,6 +2531,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4862,6 +4870,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5742,6 +5753,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6347,6 +6359,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6567,6 +6580,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1_4";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6800,12 +6814,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7428,6 +7444,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7854,6 +7871,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7971,7 +7989,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9206,6 +9226,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1180,10 +1180,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1360,6 +1362,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1386,6 +1389,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1611,6 +1615,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1793,6 +1798,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2197,6 +2203,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2523,6 +2530,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4861,6 +4869,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5741,6 +5752,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6346,6 +6358,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6566,6 +6579,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1_4";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6799,12 +6813,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7427,6 +7443,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7853,6 +7870,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7970,7 +7988,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9203,6 +9223,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1180,10 +1180,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1360,6 +1362,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1386,6 +1389,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1611,6 +1615,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1793,6 +1798,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2197,6 +2203,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2523,6 +2530,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4861,6 +4869,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5736,6 +5747,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6341,6 +6353,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6561,6 +6574,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1_4";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6794,12 +6808,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7422,6 +7438,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7848,6 +7865,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7965,7 +7983,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9198,6 +9218,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1180,10 +1180,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1360,6 +1362,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1386,6 +1389,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1611,6 +1615,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1793,6 +1798,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2197,6 +2203,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2523,6 +2530,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4858,6 +4866,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5732,6 +5743,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6337,6 +6349,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6557,6 +6570,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1_4";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6790,12 +6804,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7418,6 +7434,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7844,6 +7861,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7961,7 +7979,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9193,6 +9213,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1180,10 +1180,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1360,6 +1362,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1386,6 +1389,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1611,6 +1615,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1793,6 +1798,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2197,6 +2203,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2523,6 +2530,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4857,6 +4865,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5731,6 +5742,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6336,6 +6348,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6556,6 +6569,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_1_4";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6789,12 +6803,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"presburger" = dontDistribute super."presburger";
|
||||
@ -7417,6 +7433,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7843,6 +7860,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7960,7 +7978,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9192,6 +9212,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1172,10 +1172,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1352,6 +1354,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1377,6 +1380,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1600,6 +1604,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1759,6 +1764,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1780,6 +1786,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2182,6 +2189,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2504,6 +2512,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4766,6 +4775,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4827,6 +4837,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5685,6 +5698,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6277,6 +6291,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6496,6 +6511,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_2";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6728,12 +6744,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7354,6 +7372,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7774,6 +7793,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7890,7 +7910,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9107,6 +9129,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1172,10 +1172,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1352,6 +1354,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1377,6 +1380,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1600,6 +1604,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1759,6 +1764,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1780,6 +1786,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2181,6 +2188,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2503,6 +2511,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4765,6 +4774,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4826,6 +4836,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5684,6 +5697,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6276,6 +6290,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6495,6 +6510,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_2";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6727,12 +6743,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7353,6 +7371,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7773,6 +7792,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7889,7 +7909,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9105,6 +9127,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1167,10 +1167,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1347,6 +1349,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1372,6 +1375,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1592,6 +1596,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1750,6 +1755,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1771,6 +1777,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2170,6 +2177,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2491,6 +2499,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4745,6 +4754,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4805,6 +4815,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5659,6 +5672,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6251,6 +6265,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6469,6 +6484,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_5";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6700,12 +6716,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7323,6 +7341,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7742,6 +7761,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7853,7 +7873,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9063,6 +9085,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1167,10 +1167,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1346,6 +1348,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1371,6 +1374,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1591,6 +1595,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1749,6 +1754,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1770,6 +1776,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2169,6 +2176,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2490,6 +2498,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4742,6 +4751,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4802,6 +4812,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5655,6 +5668,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6246,6 +6260,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6463,6 +6478,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_6";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6694,12 +6710,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7316,6 +7334,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7735,6 +7754,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7845,7 +7865,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9054,6 +9076,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1167,10 +1167,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1346,6 +1348,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1371,6 +1374,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1591,6 +1595,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1749,6 +1754,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1770,6 +1776,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2169,6 +2176,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2490,6 +2498,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4742,6 +4751,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4802,6 +4812,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5655,6 +5668,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6246,6 +6260,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6463,6 +6478,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_6";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6694,12 +6710,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7316,6 +7334,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7734,6 +7753,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7844,7 +7864,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9053,6 +9075,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1167,10 +1167,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1346,6 +1348,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1371,6 +1374,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1591,6 +1595,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1749,6 +1754,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1770,6 +1776,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2169,6 +2176,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2490,6 +2498,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4741,6 +4750,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4801,6 +4811,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5653,6 +5666,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6244,6 +6258,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6461,6 +6476,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_6";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6692,12 +6708,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7314,6 +7332,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7732,6 +7751,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7842,7 +7862,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9051,6 +9073,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1167,10 +1167,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1346,6 +1348,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1371,6 +1374,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1591,6 +1595,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1749,6 +1754,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1770,6 +1776,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2169,6 +2176,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2490,6 +2498,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4739,6 +4748,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4799,6 +4809,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5651,6 +5664,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6242,6 +6256,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6459,6 +6474,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_6";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6690,12 +6706,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7312,6 +7330,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7729,6 +7748,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7839,7 +7859,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9017,6 +9039,7 @@ self: super: {
|
||||
"yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -9046,6 +9069,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1167,10 +1167,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1346,6 +1348,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1371,6 +1374,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1591,6 +1595,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1749,6 +1754,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1770,6 +1776,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2169,6 +2176,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2490,6 +2498,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4738,6 +4747,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4798,6 +4808,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5650,6 +5663,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6240,6 +6254,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6457,6 +6472,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_6";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6688,12 +6704,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7310,6 +7328,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7727,6 +7746,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7836,7 +7856,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9014,6 +9036,7 @@ self: super: {
|
||||
"yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -9043,6 +9066,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1167,10 +1167,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1346,6 +1348,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1371,6 +1374,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1591,6 +1595,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1749,6 +1754,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1770,6 +1776,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2168,6 +2175,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2488,6 +2496,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4734,6 +4743,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4794,6 +4804,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5645,6 +5658,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6235,6 +6249,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6452,6 +6467,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_6";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6683,12 +6699,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7305,6 +7323,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7722,6 +7741,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7831,7 +7851,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9009,6 +9031,7 @@ self: super: {
|
||||
"yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -9038,6 +9061,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1167,10 +1167,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1346,6 +1348,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1371,6 +1374,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1590,6 +1594,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1748,6 +1753,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1768,6 +1774,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2166,6 +2173,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2486,6 +2494,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4730,6 +4739,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4790,6 +4800,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5641,6 +5654,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6230,6 +6244,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6447,6 +6462,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_6";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6678,12 +6694,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7300,6 +7318,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7717,6 +7736,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7826,7 +7846,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9004,6 +9026,7 @@ self: super: {
|
||||
"yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -9033,6 +9056,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1167,10 +1167,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1346,6 +1348,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1371,6 +1374,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1590,6 +1594,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1748,6 +1753,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1768,6 +1774,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2165,6 +2172,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2485,6 +2493,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4728,6 +4737,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4788,6 +4798,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5639,6 +5652,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6227,6 +6241,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6444,6 +6459,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_6";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6675,12 +6691,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7297,6 +7315,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7714,6 +7733,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7823,7 +7843,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -8999,6 +9021,7 @@ self: super: {
|
||||
"yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -9028,6 +9051,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1167,10 +1167,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1346,6 +1348,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1371,6 +1374,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1590,6 +1594,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1748,6 +1753,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1768,6 +1774,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2165,6 +2172,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2485,6 +2493,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4727,6 +4736,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4787,6 +4797,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5638,6 +5651,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6225,6 +6239,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6442,6 +6457,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_6";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6673,12 +6689,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7295,6 +7313,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7711,6 +7730,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7820,7 +7840,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -8995,6 +9017,7 @@ self: super: {
|
||||
"yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -9024,6 +9047,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1171,10 +1171,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1351,6 +1353,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1376,6 +1379,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1599,6 +1603,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1758,6 +1763,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1779,6 +1785,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2178,6 +2185,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2500,6 +2508,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4762,6 +4771,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4823,6 +4833,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5681,6 +5694,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6273,6 +6287,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6492,6 +6507,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_2";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6724,12 +6740,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7350,6 +7368,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7770,6 +7789,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7886,7 +7906,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9101,6 +9123,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1167,10 +1167,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1346,6 +1348,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1371,6 +1374,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1590,6 +1594,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1748,6 +1753,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1768,6 +1774,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2165,6 +2172,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2484,6 +2492,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4726,6 +4735,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4786,6 +4796,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5637,6 +5650,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6224,6 +6238,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6441,6 +6456,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_6";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6671,12 +6687,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7293,6 +7311,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7708,6 +7727,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7817,7 +7837,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -8992,6 +9014,7 @@ self: super: {
|
||||
"yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -9021,6 +9044,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1167,10 +1167,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1346,6 +1348,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1371,6 +1374,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1590,6 +1594,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1748,6 +1753,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_1_0";
|
||||
@ -1768,6 +1774,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2165,6 +2172,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2484,6 +2492,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4726,6 +4735,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4786,6 +4796,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5637,6 +5650,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6224,6 +6238,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6441,6 +6456,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_6";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6670,12 +6686,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7292,6 +7310,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7707,6 +7726,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7816,7 +7836,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -8990,6 +9012,7 @@ self: super: {
|
||||
"yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -9019,6 +9042,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1167,10 +1167,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1346,6 +1348,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1371,6 +1374,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1590,6 +1594,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1748,6 +1753,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_1_0";
|
||||
@ -1768,6 +1774,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2165,6 +2172,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2484,6 +2492,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4725,6 +4734,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4785,6 +4795,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5636,6 +5649,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6223,6 +6237,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6440,6 +6455,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_6";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6669,12 +6685,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7291,6 +7309,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7706,6 +7725,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7815,7 +7835,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -8989,6 +9011,7 @@ self: super: {
|
||||
"yesod-auth-basic" = dontDistribute super."yesod-auth-basic";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-fb" = doDistribute super."yesod-auth-fb_1_6_6";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -9018,6 +9041,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1171,10 +1171,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1351,6 +1353,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1376,6 +1379,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1599,6 +1603,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1758,6 +1763,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1779,6 +1785,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2178,6 +2185,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2500,6 +2508,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4761,6 +4770,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4822,6 +4832,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5679,6 +5692,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6271,6 +6285,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6490,6 +6505,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_2";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6722,12 +6738,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7348,6 +7366,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7768,6 +7787,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7884,7 +7904,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9099,6 +9121,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1171,10 +1171,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1351,6 +1353,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1376,6 +1379,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1599,6 +1603,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1757,6 +1762,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1778,6 +1784,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2177,6 +2184,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2499,6 +2507,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4760,6 +4769,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4821,6 +4831,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5678,6 +5691,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6270,6 +6284,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6488,6 +6503,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_2";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6720,12 +6736,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7345,6 +7363,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7765,6 +7784,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7881,7 +7901,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9096,6 +9118,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1171,10 +1171,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1351,6 +1353,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1376,6 +1379,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1599,6 +1603,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1757,6 +1762,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1778,6 +1784,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2177,6 +2184,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2498,6 +2506,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4759,6 +4768,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4820,6 +4830,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5677,6 +5690,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6269,6 +6283,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6487,6 +6502,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_3";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6719,12 +6735,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7344,6 +7362,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7764,6 +7783,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7880,7 +7900,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9095,6 +9117,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1169,10 +1169,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1349,6 +1351,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1374,6 +1377,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1596,6 +1600,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1754,6 +1759,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1775,6 +1781,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2174,6 +2181,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2495,6 +2503,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4754,6 +4763,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4815,6 +4825,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5672,6 +5685,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6263,6 +6277,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6481,6 +6496,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_3";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6713,12 +6729,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7338,6 +7356,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7758,6 +7777,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7874,7 +7894,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9087,6 +9109,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1168,10 +1168,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1348,6 +1350,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1373,6 +1376,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1595,6 +1599,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1753,6 +1758,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1774,6 +1780,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2173,6 +2180,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2494,6 +2502,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4753,6 +4762,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4814,6 +4824,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5671,6 +5684,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6263,6 +6277,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6481,6 +6496,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_3";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6713,12 +6729,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7338,6 +7356,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7758,6 +7777,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7874,7 +7894,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9087,6 +9109,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1167,10 +1167,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1347,6 +1349,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1372,6 +1375,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1594,6 +1598,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1752,6 +1757,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1773,6 +1779,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2172,6 +2179,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2493,6 +2501,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4751,6 +4760,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4812,6 +4822,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5669,6 +5682,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_1";
|
||||
@ -6261,6 +6275,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6479,6 +6494,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_3";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6711,12 +6727,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7335,6 +7353,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7754,6 +7773,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7868,7 +7888,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9081,6 +9103,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1167,10 +1167,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_7_4";
|
||||
"aeson-schema" = dontDistribute super."aeson-schema";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1347,6 +1349,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = dontDistribute super."apiary";
|
||||
@ -1372,6 +1375,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1592,6 +1596,7 @@ self: super: {
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencode" = dontDistribute super."bencode";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1750,6 +1755,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_0_2";
|
||||
@ -1771,6 +1777,7 @@ self: super: {
|
||||
"bloodhound" = doDistribute super."bloodhound_0_5_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter" = dontDistribute super."bloomfilter";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2170,6 +2177,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2491,6 +2499,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -4746,6 +4755,7 @@ self: super: {
|
||||
"http-client-conduit" = dontDistribute super."http-client-conduit";
|
||||
"http-client-lens" = dontDistribute super."http-client-lens";
|
||||
"http-client-multipart" = dontDistribute super."http-client-multipart";
|
||||
"http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_1";
|
||||
"http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers";
|
||||
"http-client-session" = dontDistribute super."http-client-session";
|
||||
"http-client-streams" = dontDistribute super."http-client-streams";
|
||||
@ -4806,6 +4816,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = dontDistribute super."hvect";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -5662,6 +5675,7 @@ self: super: {
|
||||
"mangopay" = dontDistribute super."mangopay";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6254,6 +6268,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6472,6 +6487,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_1_5";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6704,12 +6720,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = doDistribute super."present_2_2";
|
||||
@ -7328,6 +7346,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7747,6 +7766,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7859,7 +7879,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -9069,6 +9091,7 @@ self: super: {
|
||||
"yesod-gitrepo" = doDistribute super."yesod-gitrepo_0_1_1_0";
|
||||
"yesod-gitrev" = dontDistribute super."yesod-gitrev";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1146,10 +1146,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-qq" = doDistribute super."aeson-qq_0_8_0";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
@ -1322,6 +1324,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = doDistribute super."apiary_1_4_3";
|
||||
@ -1337,6 +1340,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1550,6 +1554,7 @@ self: super: {
|
||||
"benchmark-function" = dontDistribute super."benchmark-function";
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1703,6 +1708,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_1_0";
|
||||
@ -1722,6 +1728,7 @@ self: super: {
|
||||
"blogination" = dontDistribute super."blogination";
|
||||
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2110,6 +2117,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2426,6 +2434,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -2717,6 +2726,7 @@ self: super: {
|
||||
"docker" = dontDistribute super."docker";
|
||||
"dockercook" = dontDistribute super."dockercook";
|
||||
"docopt" = dontDistribute super."docopt";
|
||||
"doctest" = doDistribute super."doctest_0_10_1";
|
||||
"doctest-discover" = dontDistribute super."doctest-discover";
|
||||
"doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
|
||||
"doctest-prop" = dontDistribute super."doctest-prop";
|
||||
@ -4686,6 +4696,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = doDistribute super."hvect_0_2_0_0";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -4879,6 +4892,7 @@ self: super: {
|
||||
"iothread" = dontDistribute super."iothread";
|
||||
"iotransaction" = dontDistribute super."iotransaction";
|
||||
"ip-quoter" = dontDistribute super."ip-quoter";
|
||||
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
|
||||
"ipatch" = dontDistribute super."ipatch";
|
||||
"ipc" = dontDistribute super."ipc";
|
||||
"ipcvar" = dontDistribute super."ipcvar";
|
||||
@ -5501,6 +5515,7 @@ self: super: {
|
||||
"mangopay" = doDistribute super."mangopay_1_11_4";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6070,6 +6085,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6111,6 +6127,7 @@ self: super: {
|
||||
"optimusprime" = dontDistribute super."optimusprime";
|
||||
"option" = dontDistribute super."option";
|
||||
"optional" = dontDistribute super."optional";
|
||||
"optional-args" = doDistribute super."optional-args_1_0_0";
|
||||
"options-time" = dontDistribute super."options-time";
|
||||
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
|
||||
"optparse-declarative" = dontDistribute super."optparse-declarative";
|
||||
@ -6281,6 +6298,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_2";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6502,12 +6520,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = dontDistribute super."present";
|
||||
@ -7123,6 +7143,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7243,6 +7264,7 @@ self: super: {
|
||||
"shadowsocks" = dontDistribute super."shadowsocks";
|
||||
"shady-gen" = dontDistribute super."shady-gen";
|
||||
"shady-graphics" = dontDistribute super."shady-graphics";
|
||||
"shake" = doDistribute super."shake_0_15_5";
|
||||
"shake-cabal-build" = dontDistribute super."shake-cabal-build";
|
||||
"shake-extras" = dontDistribute super."shake-extras";
|
||||
"shake-language-c" = doDistribute super."shake-language-c_0_8_0";
|
||||
@ -7531,6 +7553,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7633,7 +7656,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -8780,6 +8805,7 @@ self: super: {
|
||||
"yesod-auth" = doDistribute super."yesod-auth_1_4_6";
|
||||
"yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -8805,6 +8831,7 @@ self: super: {
|
||||
"yesod-form-json" = dontDistribute super."yesod-form-json";
|
||||
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1146,10 +1146,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = dontDistribute super."aeson-extra";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1321,6 +1323,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = doDistribute super."apiary_1_4_3";
|
||||
@ -1336,6 +1339,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1549,6 +1553,7 @@ self: super: {
|
||||
"benchmark-function" = dontDistribute super."benchmark-function";
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1702,6 +1707,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html" = doDistribute super."blaze-html_0_8_1_0";
|
||||
@ -1721,6 +1727,7 @@ self: super: {
|
||||
"blogination" = dontDistribute super."blogination";
|
||||
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2109,6 +2116,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2425,6 +2433,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -2716,6 +2725,7 @@ self: super: {
|
||||
"docker" = dontDistribute super."docker";
|
||||
"dockercook" = dontDistribute super."dockercook";
|
||||
"docopt" = dontDistribute super."docopt";
|
||||
"doctest" = doDistribute super."doctest_0_10_1";
|
||||
"doctest-discover" = dontDistribute super."doctest-discover";
|
||||
"doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
|
||||
"doctest-prop" = dontDistribute super."doctest-prop";
|
||||
@ -4684,6 +4694,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = doDistribute super."hvect_0_2_0_0";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -4877,6 +4890,7 @@ self: super: {
|
||||
"iothread" = dontDistribute super."iothread";
|
||||
"iotransaction" = dontDistribute super."iotransaction";
|
||||
"ip-quoter" = dontDistribute super."ip-quoter";
|
||||
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
|
||||
"ipatch" = dontDistribute super."ipatch";
|
||||
"ipc" = dontDistribute super."ipc";
|
||||
"ipcvar" = dontDistribute super."ipcvar";
|
||||
@ -5498,6 +5512,7 @@ self: super: {
|
||||
"mangopay" = doDistribute super."mangopay_1_11_4";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6066,6 +6081,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6107,6 +6123,7 @@ self: super: {
|
||||
"optimusprime" = dontDistribute super."optimusprime";
|
||||
"option" = dontDistribute super."option";
|
||||
"optional" = dontDistribute super."optional";
|
||||
"optional-args" = doDistribute super."optional-args_1_0_0";
|
||||
"options-time" = dontDistribute super."options-time";
|
||||
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
|
||||
"optparse-declarative" = dontDistribute super."optparse-declarative";
|
||||
@ -6277,6 +6294,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_2";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6497,12 +6515,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = dontDistribute super."present";
|
||||
@ -7117,6 +7137,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7237,6 +7258,7 @@ self: super: {
|
||||
"shadowsocks" = dontDistribute super."shadowsocks";
|
||||
"shady-gen" = dontDistribute super."shady-gen";
|
||||
"shady-graphics" = dontDistribute super."shady-graphics";
|
||||
"shake" = doDistribute super."shake_0_15_5";
|
||||
"shake-cabal-build" = dontDistribute super."shake-cabal-build";
|
||||
"shake-extras" = dontDistribute super."shake-extras";
|
||||
"shake-language-c" = doDistribute super."shake-language-c_0_8_0";
|
||||
@ -7525,6 +7547,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7627,7 +7650,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -8773,6 +8798,7 @@ self: super: {
|
||||
"yesod-auth" = doDistribute super."yesod-auth_1_4_6";
|
||||
"yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -8798,6 +8824,7 @@ self: super: {
|
||||
"yesod-form-json" = dontDistribute super."yesod-form-json";
|
||||
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1143,10 +1143,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = doDistribute super."aeson-extra_0_2_1_0";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1316,6 +1318,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = doDistribute super."apiary_1_4_5";
|
||||
@ -1331,6 +1334,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1542,6 +1546,7 @@ self: super: {
|
||||
"benchmark-function" = dontDistribute super."benchmark-function";
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1694,6 +1699,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
|
||||
@ -1711,6 +1717,7 @@ self: super: {
|
||||
"blogination" = dontDistribute super."blogination";
|
||||
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2099,6 +2106,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2414,6 +2422,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -2700,6 +2709,7 @@ self: super: {
|
||||
"docker" = dontDistribute super."docker";
|
||||
"dockercook" = dontDistribute super."dockercook";
|
||||
"docopt" = dontDistribute super."docopt";
|
||||
"doctest" = doDistribute super."doctest_0_10_1";
|
||||
"doctest-discover" = dontDistribute super."doctest-discover";
|
||||
"doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
|
||||
"doctest-prop" = dontDistribute super."doctest-prop";
|
||||
@ -4657,6 +4667,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = doDistribute super."hvect_0_2_0_0";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -4848,6 +4861,7 @@ self: super: {
|
||||
"iothread" = dontDistribute super."iothread";
|
||||
"iotransaction" = dontDistribute super."iotransaction";
|
||||
"ip-quoter" = dontDistribute super."ip-quoter";
|
||||
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
|
||||
"ipatch" = dontDistribute super."ipatch";
|
||||
"ipc" = dontDistribute super."ipc";
|
||||
"ipcvar" = dontDistribute super."ipcvar";
|
||||
@ -5464,6 +5478,7 @@ self: super: {
|
||||
"mangopay" = doDistribute super."mangopay_1_11_5";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6027,6 +6042,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6068,6 +6084,7 @@ self: super: {
|
||||
"optimusprime" = dontDistribute super."optimusprime";
|
||||
"option" = dontDistribute super."option";
|
||||
"optional" = dontDistribute super."optional";
|
||||
"optional-args" = doDistribute super."optional-args_1_0_0";
|
||||
"options-time" = dontDistribute super."options-time";
|
||||
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
|
||||
"optparse-declarative" = dontDistribute super."optparse-declarative";
|
||||
@ -6237,6 +6254,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_2_1";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6454,12 +6472,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4_0_2";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = dontDistribute super."present";
|
||||
@ -7070,6 +7090,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7190,6 +7211,7 @@ self: super: {
|
||||
"shadowsocks" = dontDistribute super."shadowsocks";
|
||||
"shady-gen" = dontDistribute super."shady-gen";
|
||||
"shady-graphics" = dontDistribute super."shady-graphics";
|
||||
"shake" = doDistribute super."shake_0_15_5";
|
||||
"shake-cabal-build" = dontDistribute super."shake-cabal-build";
|
||||
"shake-extras" = dontDistribute super."shake-extras";
|
||||
"shake-language-c" = doDistribute super."shake-language-c_0_8_4";
|
||||
@ -7475,6 +7497,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7576,7 +7599,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -8708,6 +8733,7 @@ self: super: {
|
||||
"yesod-auth" = doDistribute super."yesod-auth_1_4_8";
|
||||
"yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -8733,6 +8759,7 @@ self: super: {
|
||||
"yesod-form-json" = dontDistribute super."yesod-form-json";
|
||||
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1143,10 +1143,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = doDistribute super."aeson-extra_0_2_1_0";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1316,6 +1318,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = doDistribute super."apiary_1_4_5";
|
||||
@ -1331,6 +1334,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1542,6 +1546,7 @@ self: super: {
|
||||
"benchmark-function" = dontDistribute super."benchmark-function";
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1694,6 +1699,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
|
||||
@ -1711,6 +1717,7 @@ self: super: {
|
||||
"blogination" = dontDistribute super."blogination";
|
||||
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2098,6 +2105,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2413,6 +2421,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -2699,6 +2708,7 @@ self: super: {
|
||||
"docker" = dontDistribute super."docker";
|
||||
"dockercook" = dontDistribute super."dockercook";
|
||||
"docopt" = dontDistribute super."docopt";
|
||||
"doctest" = doDistribute super."doctest_0_10_1";
|
||||
"doctest-discover" = dontDistribute super."doctest-discover";
|
||||
"doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
|
||||
"doctest-prop" = dontDistribute super."doctest-prop";
|
||||
@ -4655,6 +4665,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = doDistribute super."hvect_0_2_0_0";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -4846,6 +4859,7 @@ self: super: {
|
||||
"iothread" = dontDistribute super."iothread";
|
||||
"iotransaction" = dontDistribute super."iotransaction";
|
||||
"ip-quoter" = dontDistribute super."ip-quoter";
|
||||
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
|
||||
"ipatch" = dontDistribute super."ipatch";
|
||||
"ipc" = dontDistribute super."ipc";
|
||||
"ipcvar" = dontDistribute super."ipcvar";
|
||||
@ -5462,6 +5476,7 @@ self: super: {
|
||||
"mangopay" = doDistribute super."mangopay_1_11_5";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6025,6 +6040,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6066,6 +6082,7 @@ self: super: {
|
||||
"optimusprime" = dontDistribute super."optimusprime";
|
||||
"option" = dontDistribute super."option";
|
||||
"optional" = dontDistribute super."optional";
|
||||
"optional-args" = doDistribute super."optional-args_1_0_0";
|
||||
"options-time" = dontDistribute super."options-time";
|
||||
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
|
||||
"optparse-declarative" = dontDistribute super."optparse-declarative";
|
||||
@ -6235,6 +6252,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_2_2";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6451,12 +6469,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4_0_2";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = dontDistribute super."present";
|
||||
@ -7067,6 +7087,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7187,6 +7208,7 @@ self: super: {
|
||||
"shadowsocks" = dontDistribute super."shadowsocks";
|
||||
"shady-gen" = dontDistribute super."shady-gen";
|
||||
"shady-graphics" = dontDistribute super."shady-graphics";
|
||||
"shake" = doDistribute super."shake_0_15_5";
|
||||
"shake-cabal-build" = dontDistribute super."shake-cabal-build";
|
||||
"shake-extras" = dontDistribute super."shake-extras";
|
||||
"shake-language-c" = doDistribute super."shake-language-c_0_8_4";
|
||||
@ -7472,6 +7494,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7573,7 +7596,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -8705,6 +8730,7 @@ self: super: {
|
||||
"yesod-auth" = doDistribute super."yesod-auth_1_4_8";
|
||||
"yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -8730,6 +8756,7 @@ self: super: {
|
||||
"yesod-form-json" = dontDistribute super."yesod-form-json";
|
||||
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1143,10 +1143,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = doDistribute super."aeson-extra_0_2_1_0";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1316,6 +1318,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = doDistribute super."apiary_1_4_5";
|
||||
@ -1331,6 +1334,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1542,6 +1546,7 @@ self: super: {
|
||||
"benchmark-function" = dontDistribute super."benchmark-function";
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1694,6 +1699,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
|
||||
@ -1711,6 +1717,7 @@ self: super: {
|
||||
"blogination" = dontDistribute super."blogination";
|
||||
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2097,6 +2104,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2412,6 +2420,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -2698,6 +2707,7 @@ self: super: {
|
||||
"docker" = dontDistribute super."docker";
|
||||
"dockercook" = dontDistribute super."dockercook";
|
||||
"docopt" = dontDistribute super."docopt";
|
||||
"doctest" = doDistribute super."doctest_0_10_1";
|
||||
"doctest-discover" = dontDistribute super."doctest-discover";
|
||||
"doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
|
||||
"doctest-prop" = dontDistribute super."doctest-prop";
|
||||
@ -4653,6 +4663,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = doDistribute super."hvect_0_2_0_0";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -4844,6 +4857,7 @@ self: super: {
|
||||
"iothread" = dontDistribute super."iothread";
|
||||
"iotransaction" = dontDistribute super."iotransaction";
|
||||
"ip-quoter" = dontDistribute super."ip-quoter";
|
||||
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
|
||||
"ipatch" = dontDistribute super."ipatch";
|
||||
"ipc" = dontDistribute super."ipc";
|
||||
"ipcvar" = dontDistribute super."ipcvar";
|
||||
@ -5460,6 +5474,7 @@ self: super: {
|
||||
"mangopay" = doDistribute super."mangopay_1_11_5";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6023,6 +6038,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6064,6 +6080,7 @@ self: super: {
|
||||
"optimusprime" = dontDistribute super."optimusprime";
|
||||
"option" = dontDistribute super."option";
|
||||
"optional" = dontDistribute super."optional";
|
||||
"optional-args" = doDistribute super."optional-args_1_0_0";
|
||||
"options-time" = dontDistribute super."options-time";
|
||||
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
|
||||
"optparse-declarative" = dontDistribute super."optparse-declarative";
|
||||
@ -6232,6 +6249,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_2_2";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6448,12 +6466,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4_0_2";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = dontDistribute super."present";
|
||||
@ -7064,6 +7084,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7184,6 +7205,7 @@ self: super: {
|
||||
"shadowsocks" = dontDistribute super."shadowsocks";
|
||||
"shady-gen" = dontDistribute super."shady-gen";
|
||||
"shady-graphics" = dontDistribute super."shady-graphics";
|
||||
"shake" = doDistribute super."shake_0_15_5";
|
||||
"shake-cabal-build" = dontDistribute super."shake-cabal-build";
|
||||
"shake-extras" = dontDistribute super."shake-extras";
|
||||
"shake-language-c" = doDistribute super."shake-language-c_0_8_4";
|
||||
@ -7469,6 +7491,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7570,7 +7593,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -8700,6 +8725,7 @@ self: super: {
|
||||
"yesod-auth" = doDistribute super."yesod-auth_1_4_8";
|
||||
"yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -8725,6 +8751,7 @@ self: super: {
|
||||
"yesod-form-json" = dontDistribute super."yesod-form-json";
|
||||
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1143,10 +1143,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = doDistribute super."aeson-extra_0_2_1_0";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1316,6 +1318,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = doDistribute super."apiary_1_4_5";
|
||||
@ -1331,6 +1334,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1542,6 +1546,7 @@ self: super: {
|
||||
"benchmark-function" = dontDistribute super."benchmark-function";
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1694,6 +1699,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
|
||||
@ -1711,6 +1717,7 @@ self: super: {
|
||||
"blogination" = dontDistribute super."blogination";
|
||||
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2097,6 +2104,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2412,6 +2420,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -2698,6 +2707,7 @@ self: super: {
|
||||
"docker" = dontDistribute super."docker";
|
||||
"dockercook" = dontDistribute super."dockercook";
|
||||
"docopt" = dontDistribute super."docopt";
|
||||
"doctest" = doDistribute super."doctest_0_10_1";
|
||||
"doctest-discover" = dontDistribute super."doctest-discover";
|
||||
"doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
|
||||
"doctest-prop" = dontDistribute super."doctest-prop";
|
||||
@ -4652,6 +4662,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = doDistribute super."hvect_0_2_0_0";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -4843,6 +4856,7 @@ self: super: {
|
||||
"iothread" = dontDistribute super."iothread";
|
||||
"iotransaction" = dontDistribute super."iotransaction";
|
||||
"ip-quoter" = dontDistribute super."ip-quoter";
|
||||
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
|
||||
"ipatch" = dontDistribute super."ipatch";
|
||||
"ipc" = dontDistribute super."ipc";
|
||||
"ipcvar" = dontDistribute super."ipcvar";
|
||||
@ -5458,6 +5472,7 @@ self: super: {
|
||||
"mangopay" = doDistribute super."mangopay_1_11_5";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6021,6 +6036,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6062,6 +6078,7 @@ self: super: {
|
||||
"optimusprime" = dontDistribute super."optimusprime";
|
||||
"option" = dontDistribute super."option";
|
||||
"optional" = dontDistribute super."optional";
|
||||
"optional-args" = doDistribute super."optional-args_1_0_0";
|
||||
"options-time" = dontDistribute super."options-time";
|
||||
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
|
||||
"optparse-declarative" = dontDistribute super."optparse-declarative";
|
||||
@ -6229,6 +6246,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_2_2";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6445,12 +6463,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4_0_2";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = dontDistribute super."present";
|
||||
@ -7061,6 +7081,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7181,6 +7202,7 @@ self: super: {
|
||||
"shadowsocks" = dontDistribute super."shadowsocks";
|
||||
"shady-gen" = dontDistribute super."shady-gen";
|
||||
"shady-graphics" = dontDistribute super."shady-graphics";
|
||||
"shake" = doDistribute super."shake_0_15_5";
|
||||
"shake-cabal-build" = dontDistribute super."shake-cabal-build";
|
||||
"shake-extras" = dontDistribute super."shake-extras";
|
||||
"shake-language-c" = doDistribute super."shake-language-c_0_8_4";
|
||||
@ -7466,6 +7488,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7567,7 +7590,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -8696,6 +8721,7 @@ self: super: {
|
||||
"yesod-auth" = doDistribute super."yesod-auth_1_4_8";
|
||||
"yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -8721,6 +8747,7 @@ self: super: {
|
||||
"yesod-form-json" = dontDistribute super."yesod-form-json";
|
||||
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
@ -1141,10 +1141,12 @@ self: super: {
|
||||
"aeson-diff" = dontDistribute super."aeson-diff";
|
||||
"aeson-extra" = doDistribute super."aeson-extra_0_2_2_0";
|
||||
"aeson-filthy" = dontDistribute super."aeson-filthy";
|
||||
"aeson-flatten" = dontDistribute super."aeson-flatten";
|
||||
"aeson-iproute" = dontDistribute super."aeson-iproute";
|
||||
"aeson-lens" = dontDistribute super."aeson-lens";
|
||||
"aeson-native" = dontDistribute super."aeson-native";
|
||||
"aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky";
|
||||
"aeson-prefix" = dontDistribute super."aeson-prefix";
|
||||
"aeson-schema" = doDistribute super."aeson-schema_0_3_0_7";
|
||||
"aeson-serialize" = dontDistribute super."aeson-serialize";
|
||||
"aeson-smart" = dontDistribute super."aeson-smart";
|
||||
@ -1314,6 +1316,7 @@ self: super: {
|
||||
"apache-md5" = dontDistribute super."apache-md5";
|
||||
"apelsin" = dontDistribute super."apelsin";
|
||||
"api-builder" = dontDistribute super."api-builder";
|
||||
"api-field-json-th" = dontDistribute super."api-field-json-th";
|
||||
"api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode";
|
||||
"api-tools" = dontDistribute super."api-tools";
|
||||
"apiary" = doDistribute super."apiary_1_4_5";
|
||||
@ -1329,6 +1332,7 @@ self: super: {
|
||||
"applicative-fail" = dontDistribute super."applicative-fail";
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-splice" = dontDistribute super."applicative-splice";
|
||||
"apply-refact" = dontDistribute super."apply-refact";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
@ -1540,6 +1544,7 @@ self: super: {
|
||||
"benchmark-function" = dontDistribute super."benchmark-function";
|
||||
"benchpress" = dontDistribute super."benchpress";
|
||||
"bencoding" = dontDistribute super."bencoding";
|
||||
"bento" = dontDistribute super."bento";
|
||||
"berkeleydb" = dontDistribute super."berkeleydb";
|
||||
"berp" = dontDistribute super."berp";
|
||||
"bert" = dontDistribute super."bert";
|
||||
@ -1692,6 +1697,7 @@ self: super: {
|
||||
"blatex" = dontDistribute super."blatex";
|
||||
"blaze" = dontDistribute super."blaze";
|
||||
"blaze-bootstrap" = dontDistribute super."blaze-bootstrap";
|
||||
"blaze-builder" = doDistribute super."blaze-builder_0_4_0_1";
|
||||
"blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit";
|
||||
"blaze-from-html" = dontDistribute super."blaze-from-html";
|
||||
"blaze-html-contrib" = dontDistribute super."blaze-html-contrib";
|
||||
@ -1709,6 +1715,7 @@ self: super: {
|
||||
"blogination" = dontDistribute super."blogination";
|
||||
"bloodhound" = doDistribute super."bloodhound_0_7_0_1";
|
||||
"bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth";
|
||||
"bloomfilter-redis" = dontDistribute super."bloomfilter-redis";
|
||||
"bloxorz" = dontDistribute super."bloxorz";
|
||||
"blubber" = dontDistribute super."blubber";
|
||||
"blubber-server" = dontDistribute super."blubber-server";
|
||||
@ -2094,6 +2101,7 @@ self: super: {
|
||||
"collections-api" = dontDistribute super."collections-api";
|
||||
"collections-base-instances" = dontDistribute super."collections-base-instances";
|
||||
"colock" = dontDistribute super."colock";
|
||||
"color-counter" = dontDistribute super."color-counter";
|
||||
"colorize-haskell" = dontDistribute super."colorize-haskell";
|
||||
"colors" = dontDistribute super."colors";
|
||||
"coltrane" = dontDistribute super."coltrane";
|
||||
@ -2408,6 +2416,7 @@ self: super: {
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-extra" = dontDistribute super."data-default-extra";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-base" = doDistribute super."data-default-instances-base_0_0_1";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
@ -2692,6 +2701,7 @@ self: super: {
|
||||
"docker" = dontDistribute super."docker";
|
||||
"dockercook" = dontDistribute super."dockercook";
|
||||
"docopt" = dontDistribute super."docopt";
|
||||
"doctest" = doDistribute super."doctest_0_10_1";
|
||||
"doctest-discover" = dontDistribute super."doctest-discover";
|
||||
"doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator";
|
||||
"doctest-prop" = dontDistribute super."doctest-prop";
|
||||
@ -4645,6 +4655,9 @@ self: super: {
|
||||
"huzzy" = dontDistribute super."huzzy";
|
||||
"hvect" = doDistribute super."hvect_0_2_0_0";
|
||||
"hw-bits" = dontDistribute super."hw-bits";
|
||||
"hw-conduit" = dontDistribute super."hw-conduit";
|
||||
"hw-diagnostics" = dontDistribute super."hw-diagnostics";
|
||||
"hw-prim" = dontDistribute super."hw-prim";
|
||||
"hw-succinct" = dontDistribute super."hw-succinct";
|
||||
"hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk";
|
||||
"hworker" = dontDistribute super."hworker";
|
||||
@ -4836,6 +4849,7 @@ self: super: {
|
||||
"iothread" = dontDistribute super."iothread";
|
||||
"iotransaction" = dontDistribute super."iotransaction";
|
||||
"ip-quoter" = dontDistribute super."ip-quoter";
|
||||
"ip6addr" = doDistribute super."ip6addr_0_5_0_1";
|
||||
"ipatch" = dontDistribute super."ipatch";
|
||||
"ipc" = dontDistribute super."ipc";
|
||||
"ipcvar" = dontDistribute super."ipcvar";
|
||||
@ -5451,6 +5465,7 @@ self: super: {
|
||||
"mangopay" = doDistribute super."mangopay_1_11_5";
|
||||
"manifold-random" = dontDistribute super."manifold-random";
|
||||
"manifolds" = dontDistribute super."manifolds";
|
||||
"map-exts" = dontDistribute super."map-exts";
|
||||
"mappy" = dontDistribute super."mappy";
|
||||
"marionetta" = dontDistribute super."marionetta";
|
||||
"markdown" = doDistribute super."markdown_0_1_13_2";
|
||||
@ -6014,6 +6029,7 @@ self: super: {
|
||||
"open-browser" = dontDistribute super."open-browser";
|
||||
"open-haddock" = dontDistribute super."open-haddock";
|
||||
"open-pandoc" = dontDistribute super."open-pandoc";
|
||||
"open-signals" = dontDistribute super."open-signals";
|
||||
"open-symbology" = dontDistribute super."open-symbology";
|
||||
"open-typerep" = dontDistribute super."open-typerep";
|
||||
"open-union" = dontDistribute super."open-union";
|
||||
@ -6055,6 +6071,7 @@ self: super: {
|
||||
"optimusprime" = dontDistribute super."optimusprime";
|
||||
"option" = dontDistribute super."option";
|
||||
"optional" = dontDistribute super."optional";
|
||||
"optional-args" = doDistribute super."optional-args_1_0_0";
|
||||
"options-time" = dontDistribute super."options-time";
|
||||
"optparse-applicative" = doDistribute super."optparse-applicative_0_11_0_2";
|
||||
"optparse-declarative" = dontDistribute super."optparse-declarative";
|
||||
@ -6222,6 +6239,7 @@ self: super: {
|
||||
"persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg";
|
||||
"persistent" = doDistribute super."persistent_2_2_2_1";
|
||||
"persistent-cereal" = dontDistribute super."persistent-cereal";
|
||||
"persistent-database-url" = dontDistribute super."persistent-database-url";
|
||||
"persistent-equivalence" = dontDistribute super."persistent-equivalence";
|
||||
"persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp";
|
||||
"persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute";
|
||||
@ -6438,12 +6456,14 @@ self: super: {
|
||||
"prefix-units" = doDistribute super."prefix-units_0_1_0_2";
|
||||
"prefork" = dontDistribute super."prefork";
|
||||
"pregame" = dontDistribute super."pregame";
|
||||
"prelude-compat" = dontDistribute super."prelude-compat";
|
||||
"prelude-edsl" = dontDistribute super."prelude-edsl";
|
||||
"prelude-extras" = doDistribute super."prelude-extras_0_4_0_2";
|
||||
"prelude-generalize" = dontDistribute super."prelude-generalize";
|
||||
"prelude-plus" = dontDistribute super."prelude-plus";
|
||||
"prelude-prime" = dontDistribute super."prelude-prime";
|
||||
"prelude-safeenum" = dontDistribute super."prelude-safeenum";
|
||||
"prelude2010" = dontDistribute super."prelude2010";
|
||||
"preprocess-haskell" = dontDistribute super."preprocess-haskell";
|
||||
"preprocessor-tools" = dontDistribute super."preprocessor-tools";
|
||||
"present" = dontDistribute super."present";
|
||||
@ -7054,6 +7074,7 @@ self: super: {
|
||||
"scotty-rest" = dontDistribute super."scotty-rest";
|
||||
"scotty-session" = dontDistribute super."scotty-session";
|
||||
"scotty-tls" = dontDistribute super."scotty-tls";
|
||||
"scotty-view" = dontDistribute super."scotty-view";
|
||||
"scp-streams" = dontDistribute super."scp-streams";
|
||||
"scrabble-bot" = dontDistribute super."scrabble-bot";
|
||||
"scrape-changes" = dontDistribute super."scrape-changes";
|
||||
@ -7174,6 +7195,7 @@ self: super: {
|
||||
"shadowsocks" = dontDistribute super."shadowsocks";
|
||||
"shady-gen" = dontDistribute super."shady-gen";
|
||||
"shady-graphics" = dontDistribute super."shady-graphics";
|
||||
"shake" = doDistribute super."shake_0_15_5";
|
||||
"shake-cabal-build" = dontDistribute super."shake-cabal-build";
|
||||
"shake-extras" = dontDistribute super."shake-extras";
|
||||
"shake-language-c" = doDistribute super."shake-language-c_0_8_4";
|
||||
@ -7459,6 +7481,7 @@ self: super: {
|
||||
"spoty" = dontDistribute super."spoty";
|
||||
"spreadsheet" = dontDistribute super."spreadsheet";
|
||||
"spritz" = dontDistribute super."spritz";
|
||||
"sproxy" = dontDistribute super."sproxy";
|
||||
"spsa" = dontDistribute super."spsa";
|
||||
"spy" = dontDistribute super."spy";
|
||||
"sql-simple" = dontDistribute super."sql-simple";
|
||||
@ -7560,7 +7583,9 @@ self: super: {
|
||||
"storablevector-carray" = dontDistribute super."storablevector-carray";
|
||||
"storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion";
|
||||
"str" = dontDistribute super."str";
|
||||
"stratosphere" = dontDistribute super."stratosphere";
|
||||
"stratum-tool" = dontDistribute super."stratum-tool";
|
||||
"stream" = dontDistribute super."stream";
|
||||
"stream-fusion" = dontDistribute super."stream-fusion";
|
||||
"stream-monad" = dontDistribute super."stream-monad";
|
||||
"streamed" = dontDistribute super."streamed";
|
||||
@ -8688,6 +8713,7 @@ self: super: {
|
||||
"yesod-auth" = doDistribute super."yesod-auth_1_4_8";
|
||||
"yesod-auth-account-fork" = dontDistribute super."yesod-auth-account-fork";
|
||||
"yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt";
|
||||
"yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_4_2_2";
|
||||
"yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos";
|
||||
"yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap";
|
||||
"yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre";
|
||||
@ -8713,6 +8739,7 @@ self: super: {
|
||||
"yesod-form-json" = dontDistribute super."yesod-form-json";
|
||||
"yesod-form-richtext" = dontDistribute super."yesod-form-richtext";
|
||||
"yesod-goodies" = dontDistribute super."yesod-goodies";
|
||||
"yesod-job-queue" = dontDistribute super."yesod-job-queue";
|
||||
"yesod-json" = dontDistribute super."yesod-json";
|
||||
"yesod-links" = dontDistribute super."yesod-links";
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user