Merge remote-tracking branch 'upstream/master' into hardened-stdenv
This commit is contained in:
commit
5969a59052
@ -322,6 +322,7 @@
|
||||
twey = "James ‘Twey’ Kay <twey@twey.co.uk>";
|
||||
urkud = "Yury G. Kudryashov <urkud+nix@ya.ru>";
|
||||
vandenoever = "Jos van den Oever <jos@vandenoever.info>";
|
||||
vanzef = "Ivan Solyankin <vanzef@gmail.com>";
|
||||
vbgl = "Vincent Laporte <Vincent.Laporte@gmail.com>";
|
||||
vbmithr = "Vincent Bernardoff <vb@luminar.eu.org>";
|
||||
vcunat = "Vladimír Čunát <vcunat@gmail.com>";
|
||||
|
||||
@ -86,8 +86,7 @@ in
|
||||
system.boot.loader.kernelFile = "uImage";
|
||||
|
||||
boot.initrd.availableKernelModules =
|
||||
[ "mvsdio" "mmc_block" "reiserfs" "ext3" "ums-cypress" "rtc_mv"
|
||||
"ext4" ];
|
||||
[ "mvsdio" "reiserfs" "ext3" "ums-cypress" "rtc_mv" "ext4" ];
|
||||
|
||||
boot.postBootCommands =
|
||||
''
|
||||
|
||||
@ -43,7 +43,7 @@ in
|
||||
# so that we don't need to know its device.
|
||||
fileSystems = [ ];
|
||||
|
||||
# boot.initrd.availableKernelModules = [ "mvsdio" "mmc_block" "reiserfs" "ext3" "ext4" ];
|
||||
# boot.initrd.availableKernelModules = [ "mvsdio" "reiserfs" "ext3" "ext4" ];
|
||||
|
||||
# boot.initrd.kernelModules = [ "rtc_mv" ];
|
||||
|
||||
|
||||
@ -8,11 +8,15 @@ let
|
||||
${optionalString cfg.userControlled.enable ''
|
||||
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=${cfg.userControlled.group}
|
||||
update_config=1''}
|
||||
${concatStringsSep "\n" (mapAttrsToList (ssid: networkConfig: ''
|
||||
${concatStringsSep "\n" (mapAttrsToList (ssid: networkConfig: let
|
||||
psk = if networkConfig.psk != null
|
||||
then ''"${networkConfig.psk}"''
|
||||
else networkConfig.pskRaw;
|
||||
in ''
|
||||
network={
|
||||
ssid="${ssid}"
|
||||
${optionalString (networkConfig.psk != null) ''psk="${networkConfig.psk}"''}
|
||||
${optionalString (networkConfig.psk == null) ''key_mgmt=NONE''}
|
||||
${optionalString (psk != null) ''psk=${psk}''}
|
||||
${optionalString (psk == null) ''key_mgmt=NONE''}
|
||||
}
|
||||
'') cfg.networks)}
|
||||
'' else "/etc/wpa_supplicant.conf";
|
||||
@ -49,6 +53,19 @@ in {
|
||||
|
||||
Be aware that these will be written to the nix store
|
||||
in plaintext!
|
||||
|
||||
Mutually exclusive with <varname>pskRaw</varname>.
|
||||
'';
|
||||
};
|
||||
|
||||
pskRaw = mkOption {
|
||||
type = types.nullOr types.str;
|
||||
default = null;
|
||||
description = ''
|
||||
The network's pre-shared key in hex defaulting
|
||||
to being a network without any authentication.
|
||||
|
||||
Mutually exclusive with <varname>psk</varname>.
|
||||
'';
|
||||
};
|
||||
};
|
||||
@ -95,6 +112,11 @@ in {
|
||||
|
||||
config = mkMerge [
|
||||
(mkIf cfg.enable {
|
||||
assertions = flip mapAttrsToList cfg.networks (name: cfg: {
|
||||
assertion = cfg.psk == null || cfg.pskRaw == null;
|
||||
message = ''networking.wireless."${name}".psk and networking.wireless."${name}".pskRaw are mutually exclusive'';
|
||||
});
|
||||
|
||||
environment.systemPackages = [ pkgs.wpa_supplicant ];
|
||||
|
||||
services.dbus.packages = [ pkgs.wpa_supplicant ];
|
||||
|
||||
@ -34,6 +34,6 @@ in
|
||||
'';
|
||||
}];
|
||||
};
|
||||
environment.systemPackages = with pkgs; [ i3 i3status dmenu ];
|
||||
environment.systemPackages = with pkgs; [ i3 ];
|
||||
};
|
||||
}
|
||||
|
||||
@ -184,6 +184,9 @@ in
|
||||
"ide_disk"
|
||||
"ide_generic"
|
||||
|
||||
# SD cards and internal eMMC drives.
|
||||
"mmc_block"
|
||||
|
||||
# Support USB keyboards, in case the boot fails and we only have
|
||||
# a USB keyboard.
|
||||
"uhci_hcd"
|
||||
|
||||
@ -8,10 +8,11 @@ let
|
||||
|
||||
waagent = with pkgs; stdenv.mkDerivation rec {
|
||||
name = "waagent-2.0";
|
||||
src = pkgs.fetchgit {
|
||||
url = https://github.com/Phreedom/WALinuxAgent.git;
|
||||
rev = "9dba81c7b1239c7971ec96e405e403c7cd224e6b";
|
||||
sha256 = "0khxk3ns3z37v26f2qj6m3m698a0vqpc9bxg5p7fyr3xza5gzwhs";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "phreedom";
|
||||
repo = "WALinuxAgent";
|
||||
rev = "1d31fe8cbc7f842993eed9b33a3d3f5410c364e3";
|
||||
sha256 = "1s53pfmy3azp0rmympmnphyq96sr9jy07pbsfza6mdzpalx1ripl";
|
||||
};
|
||||
buildInputs = [ makeWrapper python pythonPackages.wrapPython ];
|
||||
runtimeDeps = [ findutils gnugrep gawk coreutils openssl openssh
|
||||
|
||||
@ -110,6 +110,7 @@ let
|
||||
|
||||
# Generate a hard disk image containing a /boot partition and GRUB
|
||||
# in the MBR. Used when the `useBootLoader' option is set.
|
||||
# FIXME: use nixos/lib/make-disk-image.nix.
|
||||
bootDisk =
|
||||
pkgs.vmTools.runInLinuxVM (
|
||||
pkgs.runCommand "nixos-boot-disk"
|
||||
|
||||
36
pkgs/applications/audio/qtscrobbler/default.nix
Normal file
36
pkgs/applications/audio/qtscrobbler/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ stdenv, lib, fetchurl, withMtp ? true, libmtp, pkgconfig, which, qt4 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "qtscrobbler-${version}";
|
||||
version = "0.11";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/qtscrob/qtscrob/${version}/qtscrob-${version}.tar.bz2";
|
||||
sha256 = "01c8e48f616ed09504833d27d92fd62f455bd645ea2d1cc2a5f4c287d641daba";
|
||||
};
|
||||
|
||||
nativeBuildInputs = lib.optionals withMtp [ pkgconfig which ];
|
||||
buildInputs = [ qt4 ] ++ lib.optional withMtp libmtp;
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
postPatch = ''
|
||||
cd src
|
||||
sed -i "s,/usr/local,$out," common.pri
|
||||
'';
|
||||
|
||||
configurePhase = "qmake";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Qt based last.fm scrobbler";
|
||||
longDescription = ''
|
||||
QTScrobbler is a tool to upload information about the tracks you have played from your Digital Audio Player (DAP) to your last.fm account.
|
||||
It is able to gather this information from Apple iPods or DAPs running the Rockbox replacement firmware.
|
||||
'';
|
||||
|
||||
homepage = http://qtscrob.sourceforge.net;
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.vanzef ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
@ -6,7 +6,7 @@ assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux";
|
||||
assert gksuSupport -> gksu != null;
|
||||
|
||||
let
|
||||
build = "3101";
|
||||
build = "3103";
|
||||
libPath = stdenv.lib.makeLibraryPath [glib xorg.libX11 gtk cairo pango];
|
||||
redirects = [ "/usr/bin/pkexec=${pkexecPath}" ]
|
||||
++ stdenv.lib.optional gksuSupport "/usr/bin/gksudo=${gksu}/bin/gksudo";
|
||||
@ -20,13 +20,13 @@ in let
|
||||
fetchurl {
|
||||
name = "sublimetext-${build}.tar.bz2";
|
||||
url = "https://download.sublimetext.com/sublime_text_3_build_${build}_x32.tar.bz2";
|
||||
sha256 = "1klssh79mxm7i6r77p9a6a1rqzssnkv5y4k37bnxv8bilwqhfrcz";
|
||||
sha256 = "1qidnczndyhyp9rfzmpqah00lrx7z1a0fy7a13lzwqq3gslhwf1l";
|
||||
}
|
||||
else
|
||||
fetchurl {
|
||||
name = "sublimetext-${build}.tar.bz2";
|
||||
url = "https://download.sublimetext.com/sublime_text_3_build_${build}_x64.tar.bz2";
|
||||
sha256 = "0yrhn2mc5f2y4cy2ydya4h97bij0cm51yd4q06l6yjshl6qyc2db";
|
||||
sha256 = "1x8kb3prs6wa5s5rj0gfq96zx6k5q3s168yhfsa36x2szi6x6y4x";
|
||||
};
|
||||
|
||||
dontStrip = true;
|
||||
|
||||
@ -50,6 +50,9 @@ stdenv.mkDerivation {
|
||||
mkdir -p $out/etc/udev/rules.d/
|
||||
./tools/sane-desc -m udev > $out/etc/udev/rules.d/49-libsane.rules || \
|
||||
cp tools/udev/libsane.rules $out/etc/udev/rules.d/49-libsane.rules
|
||||
# the created 49-libsane references /bin/sh
|
||||
substituteInPlace $out/etc/udev/rules.d/49-libsane.rules \
|
||||
--replace "RUN+=\"/bin/sh" "RUN+=\"${stdenv.shell}"
|
||||
|
||||
substituteInPlace $out/lib/libsane.la \
|
||||
--replace "-ljpeg" "-L${libjpeg}/lib -ljpeg"
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{ fetchurl, stdenv, which, pkgconfig, makeWrapper, libxcb, xcbutilkeysyms
|
||||
, xcbutil, xcbutilwm, libstartup_notification, libX11, pcre, libev, yajl
|
||||
, xcb-util-cursor, coreutils, perl, pango, perlPackages, libxkbcommon
|
||||
, xorgserver, xvfb_run }:
|
||||
, xorgserver, xvfb_run, dmenu, i3status }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "i3-${version}";
|
||||
@ -24,6 +24,13 @@ stdenv.mkDerivation rec {
|
||||
patchShebangs .
|
||||
'';
|
||||
|
||||
postFixup = ''
|
||||
substituteInPlace $out/etc/i3/config --replace dmenu_run ${dmenu}/bin/dmenu_run
|
||||
substituteInPlace $out/etc/i3/config --replace "status_command i3status" "status_command ${i3status}/bin/i3status"
|
||||
substituteInPlace $out/etc/i3/config.keycodes --replace dmenu_run ${dmenu}/bin/dmenu_run
|
||||
substituteInPlace $out/etc/i3/config.keycodes --replace "status_command i3status" "status_command ${i3status}/bin/i3status"
|
||||
'';
|
||||
|
||||
# Tests have been failing (at least for some people in some cases)
|
||||
# and have been disabled until someone wants to fix them. Some
|
||||
# initial digging uncovers that the tests call out to `git`, which
|
||||
|
||||
@ -8,7 +8,7 @@ let
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "geolite-legacy-${version}";
|
||||
version = "2016-02-02";
|
||||
version = "2016-02-08";
|
||||
|
||||
srcGeoIP = fetchDB
|
||||
"GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz"
|
||||
@ -24,10 +24,10 @@ stdenv.mkDerivation rec {
|
||||
"0fnlznn04lpkkd7sy9r9kdl3fcp8ix7msdrncwgz26dh537ml32z";
|
||||
srcGeoIPASNum = fetchDB
|
||||
"asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz"
|
||||
"1h47n8fn9dfjw672jbw67mn03bidaahwnkra464ggy1q4pwkvncs";
|
||||
"0ib93p2fwayqsxwph98rkgln7xpjrwhzzc06sc74876jpaq3g8g5";
|
||||
srcGeoIPASNumv6 = fetchDB
|
||||
"asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz"
|
||||
"0nnfp8xzrlcdvy8lvsw2mvfmxavj2gmm7bvr0l2pv07n863b873y";
|
||||
"1izlxqcvdag66sny5zjjwkmjhai0c9m77b96j117n0x0awrrk4h9";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "GeoLite Legacy IP geolocation databases";
|
||||
|
||||
@ -3,12 +3,12 @@
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "8.0.0.20160111";
|
||||
version = "8.0.0.20160204";
|
||||
name = "ghc-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://downloads.haskell.org/~ghc/8.0.1-rc1/${name}-src.tar.xz";
|
||||
sha256 = "0y4nha46mw01ysw90kh8szcbsfdc37rqjm7r5fyk6flqwr8b6pvr";
|
||||
url = "https://downloads.haskell.org/~ghc/8.0.1-rc2/${name}-src.tar.xz";
|
||||
sha256 = "0v8pciva93i4a6h0l76vq6bbvrg76b1y4awwbxcg3m9gnqkvmy2k";
|
||||
};
|
||||
|
||||
patches = [
|
||||
|
||||
@ -3,11 +3,11 @@
|
||||
stdenv.mkDerivation rec {
|
||||
name = "icedtea-web-${version}";
|
||||
|
||||
version = "1.6.1";
|
||||
version = "1.6.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://icedtea.wildebeest.org/download/source/${name}.tar.gz";
|
||||
sha256 = "0869j9jn0z5b5pfspp4v5cj2ksmbqmmmjhqicn4kqc6wr6v6md59";
|
||||
sha256 = "004kwrngyxxlrlzby4vzxjr0xcyngcdc9dfgnvi61ffnjr006ryf";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig bc perl ];
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
import ./jdk-linux-base.nix {
|
||||
productVersion = "8";
|
||||
patchVersion = "71";
|
||||
patchVersion = "73";
|
||||
downloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html;
|
||||
sha256_i686 = "11wcizv4gvlffzn2wj34ffwrq21xwh4ikg2vjv63avdfp2hazjqv";
|
||||
sha256_x86_64 = "18jqdrlbv4sdds2hlmp437waq7r9b33f7hdp8kb6l7pkrizr9nwv";
|
||||
sha256_i686 = "1bi3yj2ds9w13p2lzvmxffk5gax8syi3bw52w8pam1jr3fmzgwgl";
|
||||
sha256_x86_64 = "1rp3nbnhkncyr48m0nn3pf5fr4bp3lzm0ki4gca7mn7rzag19a26";
|
||||
jceName = "jce_policy-8.zip";
|
||||
jceDownloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html;
|
||||
sha256JCE = "0n8b6b8qmwb14lllk2lk1q1ahd3za9fnjigz5xn65mpg48whl0pk";
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
import ./jdk-linux-base.nix {
|
||||
productVersion = "8";
|
||||
patchVersion = "72";
|
||||
patchVersion = "74";
|
||||
downloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html;
|
||||
sha256_i686 = "023rnlm5v7d9w4d7bgcac8j0r1vqkbv6fl20k8354pzpdjg6liaq";
|
||||
sha256_x86_64 = "167ca39a6y0n8l87kdm5nv2hrp0wf6g4mw1rbychjc04f5igkrs6";
|
||||
sha256_i686 = "1vc3g89fbrmznb10bhh5gs143hcjg4wsy4j4hwnr1djfj83y8188";
|
||||
sha256_x86_64 = "1pfx7il1h42w3kigscdvm9vfy616lmsp1d2cqvplim3nyxwmvz8b";
|
||||
jceName = "jce_policy-8.zip";
|
||||
jceDownloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html;
|
||||
sha256JCE = "0n8b6b8qmwb14lllk2lk1q1ahd3za9fnjigz5xn65mpg48whl0pk";
|
||||
|
||||
@ -634,6 +634,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -908,6 +909,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1782,6 +1784,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1887,6 +1890,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_5";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2479,6 +2483,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3194,6 +3204,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3753,6 +3764,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3893,6 +3905,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4158,6 +4171,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5092,6 +5106,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5224,11 +5239,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5658,6 +5675,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6582,6 +6600,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6887,6 +6906,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8410,6 +8430,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -9045,6 +9066,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -634,6 +634,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -908,6 +909,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1782,6 +1784,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1887,6 +1890,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_5";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2479,6 +2483,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3194,6 +3204,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3753,6 +3764,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3893,6 +3905,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4158,6 +4171,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5092,6 +5106,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5224,11 +5239,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5658,6 +5675,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6582,6 +6600,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6887,6 +6906,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8410,6 +8430,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -9045,6 +9066,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -634,6 +634,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -908,6 +909,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1782,6 +1784,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1887,6 +1890,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_5";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2479,6 +2483,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3194,6 +3204,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3753,6 +3764,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3893,6 +3905,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4158,6 +4171,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5092,6 +5106,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5224,11 +5239,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5658,6 +5675,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6582,6 +6600,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6887,6 +6906,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8410,6 +8430,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -9045,6 +9066,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -634,6 +634,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -908,6 +909,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1782,6 +1784,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1887,6 +1890,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_5";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2479,6 +2483,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3194,6 +3204,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3753,6 +3764,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3893,6 +3905,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4158,6 +4171,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5092,6 +5106,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5224,11 +5239,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5658,6 +5675,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6582,6 +6600,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6887,6 +6906,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8410,6 +8430,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -9045,6 +9066,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -634,6 +634,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -908,6 +909,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1782,6 +1784,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1887,6 +1890,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_6";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2479,6 +2483,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3193,6 +3203,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3752,6 +3763,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3890,6 +3902,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4155,6 +4168,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5089,6 +5103,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5221,11 +5236,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5655,6 +5672,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6579,6 +6597,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6884,6 +6903,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8406,6 +8426,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -9041,6 +9062,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -634,6 +634,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -908,6 +909,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1782,6 +1784,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1887,6 +1890,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_6";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2479,6 +2483,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3193,6 +3203,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3752,6 +3763,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3890,6 +3902,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4155,6 +4168,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5089,6 +5103,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5221,11 +5236,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5655,6 +5672,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6579,6 +6597,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6884,6 +6903,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8406,6 +8426,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -9041,6 +9062,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -634,6 +634,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -907,6 +908,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1781,6 +1783,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1886,6 +1889,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_6";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2478,6 +2482,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3192,6 +3202,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3751,6 +3762,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3889,6 +3901,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4153,6 +4166,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5087,6 +5101,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5219,11 +5234,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5653,6 +5670,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6576,6 +6594,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6881,6 +6900,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8402,6 +8422,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -9034,6 +9055,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -634,6 +634,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -907,6 +908,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1781,6 +1783,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1886,6 +1889,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_6";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2478,6 +2482,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3192,6 +3202,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3751,6 +3762,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3889,6 +3901,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4153,6 +4166,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5087,6 +5101,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5219,11 +5234,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5653,6 +5670,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6576,6 +6594,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6881,6 +6900,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8402,6 +8422,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -9034,6 +9055,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -631,6 +631,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -904,6 +905,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1776,6 +1778,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1879,6 +1882,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_7";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2470,6 +2474,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3183,6 +3193,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3741,6 +3752,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3879,6 +3891,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4144,6 +4157,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5076,6 +5090,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5208,11 +5223,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5642,6 +5659,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6565,6 +6583,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6870,6 +6889,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8388,6 +8408,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -9020,6 +9041,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -631,6 +631,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -904,6 +905,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1776,6 +1778,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1878,6 +1881,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2468,6 +2472,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3180,6 +3190,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3738,6 +3749,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3876,6 +3888,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4140,6 +4153,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5070,6 +5084,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5202,11 +5217,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5636,6 +5653,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6558,6 +6576,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6863,6 +6882,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8376,6 +8396,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -9007,6 +9028,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -630,6 +630,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -903,6 +904,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1775,6 +1777,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1876,6 +1879,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2464,6 +2468,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3173,6 +3183,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3729,6 +3740,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3866,6 +3878,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4129,6 +4142,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5054,6 +5068,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5186,11 +5201,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5619,6 +5636,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6538,6 +6556,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6842,6 +6861,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8349,6 +8369,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8977,6 +8998,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -630,6 +630,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -903,6 +904,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1775,6 +1777,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1876,6 +1879,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2464,6 +2468,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3172,6 +3182,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3728,6 +3739,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3865,6 +3877,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4128,6 +4141,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5051,6 +5065,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5183,11 +5198,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5615,6 +5632,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6534,6 +6552,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6838,6 +6857,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8345,6 +8365,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8973,6 +8994,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -630,6 +630,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -903,6 +904,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1775,6 +1777,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1876,6 +1879,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2464,6 +2468,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3172,6 +3182,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3728,6 +3739,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3865,6 +3877,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4128,6 +4141,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5050,6 +5064,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5182,11 +5197,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5614,6 +5631,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6533,6 +6551,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6837,6 +6856,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8343,6 +8363,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8971,6 +8992,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -630,6 +630,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -903,6 +904,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1775,6 +1777,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1876,6 +1879,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2464,6 +2468,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3172,6 +3182,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3728,6 +3739,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3864,6 +3876,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4127,6 +4140,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5049,6 +5063,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5181,11 +5196,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5613,6 +5630,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6532,6 +6550,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6836,6 +6855,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8341,6 +8361,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8969,6 +8990,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -629,6 +629,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -902,6 +903,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1773,6 +1775,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1874,6 +1877,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2461,6 +2465,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3169,6 +3179,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3725,6 +3736,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3861,6 +3873,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4124,6 +4137,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5045,6 +5059,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5176,11 +5191,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5608,6 +5625,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6526,6 +6544,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6829,6 +6848,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8334,6 +8354,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8962,6 +8983,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -629,6 +629,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -901,6 +902,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1772,6 +1774,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1873,6 +1876,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2458,6 +2462,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3165,6 +3175,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3721,6 +3732,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3857,6 +3869,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4120,6 +4133,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5041,6 +5055,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5172,11 +5187,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5604,6 +5621,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6520,6 +6538,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6822,6 +6841,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8325,6 +8345,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8952,6 +8973,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -631,6 +631,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -904,6 +905,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1776,6 +1778,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1878,6 +1881,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2466,6 +2470,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3178,6 +3188,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3735,6 +3746,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3873,6 +3885,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4137,6 +4150,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5067,6 +5081,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5199,11 +5214,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5633,6 +5650,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6554,6 +6572,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6858,6 +6877,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8370,6 +8390,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -9001,6 +9022,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -630,6 +630,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -903,6 +904,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1775,6 +1777,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1877,6 +1880,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2465,6 +2469,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3176,6 +3186,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3733,6 +3744,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3871,6 +3883,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4134,6 +4147,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5064,6 +5078,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5196,11 +5211,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5630,6 +5647,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6550,6 +6568,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6854,6 +6873,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8365,6 +8385,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8996,6 +9017,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -630,6 +630,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -903,6 +904,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1775,6 +1777,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1876,6 +1879,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2464,6 +2468,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3175,6 +3185,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3732,6 +3743,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3870,6 +3882,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4133,6 +4146,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5063,6 +5077,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5195,11 +5210,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5629,6 +5646,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6549,6 +6567,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6853,6 +6872,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8363,6 +8383,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8993,6 +9014,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -630,6 +630,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -903,6 +904,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1775,6 +1777,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1876,6 +1879,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2464,6 +2468,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3175,6 +3185,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3732,6 +3743,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3870,6 +3882,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4133,6 +4146,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5058,6 +5072,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5190,11 +5205,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5624,6 +5641,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6544,6 +6562,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6848,6 +6867,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8358,6 +8378,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8988,6 +9009,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -630,6 +630,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -903,6 +904,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1775,6 +1777,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1876,6 +1879,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2464,6 +2468,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3173,6 +3183,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3730,6 +3741,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3867,6 +3879,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4130,6 +4143,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5055,6 +5069,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5187,11 +5202,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5620,6 +5637,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6540,6 +6558,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6844,6 +6863,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8353,6 +8373,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8983,6 +9004,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -630,6 +630,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -903,6 +904,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1775,6 +1777,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1876,6 +1879,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2464,6 +2468,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3173,6 +3183,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3729,6 +3740,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3866,6 +3878,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4129,6 +4142,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5054,6 +5068,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5186,11 +5201,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5619,6 +5636,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6539,6 +6557,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6843,6 +6862,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8352,6 +8372,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8982,6 +9003,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -625,6 +625,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -895,6 +896,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1761,6 +1763,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1862,6 +1865,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2443,6 +2447,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3151,6 +3161,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3668,6 +3679,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3701,6 +3713,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3837,6 +3850,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4100,6 +4114,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5009,6 +5024,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5138,11 +5154,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5565,6 +5583,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6467,6 +6486,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6770,6 +6790,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8264,6 +8285,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8885,6 +8907,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -625,6 +625,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -895,6 +896,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1761,6 +1763,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1861,6 +1864,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2442,6 +2446,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3150,6 +3160,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3667,6 +3678,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3700,6 +3712,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3836,6 +3849,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4099,6 +4113,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5008,6 +5023,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5137,11 +5153,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5564,6 +5582,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6466,6 +6485,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6769,6 +6789,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8263,6 +8284,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8883,6 +8905,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -624,6 +624,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -892,6 +893,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1752,6 +1754,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1850,6 +1853,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_1_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2428,6 +2432,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3131,6 +3141,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3648,6 +3659,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3681,6 +3693,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3815,6 +3828,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4078,6 +4092,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4981,6 +4996,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5110,11 +5126,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5531,6 +5549,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6428,6 +6447,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6730,6 +6750,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8212,6 +8233,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8829,6 +8851,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -624,6 +624,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -892,6 +893,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1751,6 +1753,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1849,6 +1852,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_1_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2427,6 +2431,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3130,6 +3140,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3646,6 +3657,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3679,6 +3691,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3813,6 +3826,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4076,6 +4090,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4977,6 +4992,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5106,11 +5122,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5527,6 +5545,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6422,6 +6441,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6724,6 +6744,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8203,6 +8224,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8820,6 +8842,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -624,6 +624,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -892,6 +893,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1751,6 +1753,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1849,6 +1852,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_1_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2427,6 +2431,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3130,6 +3140,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3646,6 +3657,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3679,6 +3691,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3813,6 +3826,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4076,6 +4090,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4977,6 +4992,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5106,11 +5122,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5527,6 +5545,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6422,6 +6441,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6724,6 +6744,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8202,6 +8223,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8819,6 +8841,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -624,6 +624,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -892,6 +893,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1751,6 +1753,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1849,6 +1852,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_1_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2427,6 +2431,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3130,6 +3140,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3646,6 +3657,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3679,6 +3691,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3812,6 +3825,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4075,6 +4089,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4975,6 +4990,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5104,11 +5120,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5525,6 +5543,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6420,6 +6439,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6722,6 +6742,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8200,6 +8221,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8817,6 +8839,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -624,6 +624,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -892,6 +893,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1750,6 +1752,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1848,6 +1851,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_1_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2426,6 +2430,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3128,6 +3138,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3644,6 +3655,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3677,6 +3689,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3810,6 +3823,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4073,6 +4087,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4972,6 +4987,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5101,11 +5117,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5522,6 +5540,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6417,6 +6436,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6719,6 +6739,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8196,6 +8217,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8811,6 +8833,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -624,6 +624,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -892,6 +893,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1750,6 +1752,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1848,6 +1851,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_1_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2426,6 +2430,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3127,6 +3137,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3643,6 +3654,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3676,6 +3688,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3809,6 +3822,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4072,6 +4086,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4971,6 +4986,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5100,11 +5116,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5521,6 +5539,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6413,6 +6432,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6715,6 +6735,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8191,6 +8212,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8805,6 +8827,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -623,6 +623,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -891,6 +892,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1749,6 +1751,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1847,6 +1850,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_1_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2423,6 +2427,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3122,6 +3132,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3638,6 +3649,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3671,6 +3683,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3804,6 +3817,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4067,6 +4081,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4966,6 +4981,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5095,11 +5111,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5515,6 +5533,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6407,6 +6426,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6709,6 +6729,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8185,6 +8206,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8798,6 +8820,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -623,6 +623,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -891,6 +892,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1747,6 +1749,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1845,6 +1848,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_1_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2421,6 +2425,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3118,6 +3128,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3633,6 +3644,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3666,6 +3678,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3799,6 +3812,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4062,6 +4076,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4961,6 +4976,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5090,11 +5106,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5510,6 +5528,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6401,6 +6420,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6703,6 +6723,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8179,6 +8200,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8792,6 +8814,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -623,6 +623,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -891,6 +892,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1747,6 +1749,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1844,6 +1847,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_1_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2420,6 +2424,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3116,6 +3126,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3631,6 +3642,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3664,6 +3676,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3797,6 +3810,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4060,6 +4074,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4958,6 +4973,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5087,11 +5103,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5507,6 +5525,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6396,6 +6415,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6698,6 +6718,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8173,6 +8194,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8785,6 +8807,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -623,6 +623,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -891,6 +892,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1747,6 +1749,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1844,6 +1847,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_1_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2420,6 +2424,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3116,6 +3126,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3630,6 +3641,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3663,6 +3675,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3796,6 +3809,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4059,6 +4073,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4957,6 +4972,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5086,11 +5102,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5505,6 +5523,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6394,6 +6413,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6696,6 +6716,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8169,6 +8190,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8780,6 +8802,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -625,6 +625,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -894,6 +895,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1760,6 +1762,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1858,6 +1861,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2439,6 +2443,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3147,6 +3157,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3664,6 +3675,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3697,6 +3709,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3833,6 +3846,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4096,6 +4110,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5005,6 +5020,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5134,11 +5150,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5561,6 +5579,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6463,6 +6482,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6766,6 +6786,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8260,6 +8281,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8879,6 +8901,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -623,6 +623,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -891,6 +892,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1747,6 +1749,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1844,6 +1847,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_1_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2419,6 +2423,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3115,6 +3125,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3629,6 +3640,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3662,6 +3674,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3795,6 +3808,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4058,6 +4072,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4956,6 +4971,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5085,11 +5101,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5504,6 +5522,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6392,6 +6411,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6694,6 +6714,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8166,6 +8187,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8777,6 +8799,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -623,6 +623,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -891,6 +892,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1747,6 +1749,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1844,6 +1847,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_1_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2419,6 +2423,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3115,6 +3125,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3629,6 +3640,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3662,6 +3674,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3795,6 +3808,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4058,6 +4072,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4956,6 +4971,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5085,11 +5101,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5503,6 +5521,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6391,6 +6410,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6692,6 +6712,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8164,6 +8185,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8772,6 +8794,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -623,6 +623,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -891,6 +892,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1747,6 +1749,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1844,6 +1847,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_1_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2419,6 +2423,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3115,6 +3125,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3629,6 +3640,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3662,6 +3674,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3795,6 +3808,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4058,6 +4072,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4955,6 +4970,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5084,11 +5100,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5502,6 +5520,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6389,6 +6408,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6690,6 +6710,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8162,6 +8183,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8770,6 +8792,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -625,6 +625,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -894,6 +895,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1760,6 +1762,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1858,6 +1861,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2439,6 +2443,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3146,6 +3156,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3663,6 +3674,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3696,6 +3708,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3832,6 +3845,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4095,6 +4109,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5003,6 +5018,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5132,11 +5148,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5559,6 +5577,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6461,6 +6480,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6764,6 +6784,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8258,6 +8279,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8877,6 +8899,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -625,6 +625,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -894,6 +895,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1759,6 +1761,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1857,6 +1860,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2438,6 +2442,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3145,6 +3155,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3662,6 +3673,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3695,6 +3707,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3831,6 +3844,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4094,6 +4108,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5002,6 +5017,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5131,11 +5147,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5557,6 +5575,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6457,6 +6476,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6760,6 +6780,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8253,6 +8274,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8872,6 +8894,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -625,6 +625,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -894,6 +895,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1759,6 +1761,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1857,6 +1860,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2437,6 +2441,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3144,6 +3154,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3661,6 +3672,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3694,6 +3706,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3830,6 +3843,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4093,6 +4107,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -5001,6 +5016,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5130,11 +5146,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5555,6 +5573,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6455,6 +6474,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6758,6 +6778,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8251,6 +8272,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8870,6 +8892,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -625,6 +625,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -894,6 +895,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1756,6 +1758,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1854,6 +1857,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2434,6 +2438,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3141,6 +3151,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3658,6 +3669,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3691,6 +3703,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3825,6 +3838,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4088,6 +4102,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4996,6 +5011,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5125,11 +5141,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5550,6 +5568,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6449,6 +6468,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6752,6 +6772,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8243,6 +8264,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8861,6 +8883,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -624,6 +624,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -893,6 +894,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1755,6 +1757,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1853,6 +1856,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_0_8";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2433,6 +2437,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3140,6 +3150,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3657,6 +3668,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3690,6 +3702,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3824,6 +3837,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4087,6 +4101,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4995,6 +5010,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5124,11 +5140,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5549,6 +5567,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6448,6 +6467,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6751,6 +6771,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8242,6 +8263,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8860,6 +8882,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -624,6 +624,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -892,6 +893,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1754,6 +1756,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1852,6 +1855,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_1_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2432,6 +2436,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3138,6 +3148,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3655,6 +3666,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3688,6 +3700,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3822,6 +3835,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4085,6 +4099,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4993,6 +5008,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5122,11 +5138,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5547,6 +5565,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6446,6 +6465,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6749,6 +6769,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8236,6 +8257,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8854,6 +8876,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -624,6 +624,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -892,6 +893,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1752,6 +1754,7 @@ self: super: {
|
||||
"boolexpr" = dontDistribute super."boolexpr";
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1850,6 +1853,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_18_1_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2429,6 +2433,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3133,6 +3143,7 @@ self: super: {
|
||||
"fixed-vector-hetero" = dontDistribute super."fixed-vector-hetero";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3650,6 +3661,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3683,6 +3695,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3817,6 +3830,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -4080,6 +4094,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4986,6 +5001,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -5115,11 +5131,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5538,6 +5556,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6436,6 +6455,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6739,6 +6759,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -8222,6 +8243,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8839,6 +8861,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -611,6 +611,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -872,6 +873,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1695,6 +1697,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1786,6 +1789,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2353,6 +2357,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3023,6 +3033,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3533,6 +3544,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3565,6 +3577,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3694,6 +3707,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3955,6 +3969,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4827,6 +4842,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4944,11 +4960,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5350,6 +5368,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6206,6 +6225,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6504,6 +6524,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7945,6 +7966,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8535,6 +8557,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -611,6 +611,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -872,6 +873,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1694,6 +1696,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1785,6 +1788,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2352,6 +2356,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3020,6 +3030,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3530,6 +3541,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3562,6 +3574,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3691,6 +3704,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3952,6 +3966,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4824,6 +4839,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4941,11 +4957,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5346,6 +5364,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6200,6 +6219,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6498,6 +6518,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7938,6 +7959,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8527,6 +8549,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -606,6 +606,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -866,6 +867,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1678,6 +1680,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1769,6 +1772,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2332,6 +2336,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2990,6 +3000,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3495,6 +3506,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3527,6 +3539,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3656,6 +3669,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3915,6 +3929,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4074,6 +4089,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4780,6 +4796,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4894,11 +4911,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5296,6 +5315,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6138,6 +6158,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6287,6 +6308,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6427,6 +6449,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7850,6 +7873,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8423,6 +8447,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -606,6 +606,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -866,6 +867,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1677,6 +1679,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1767,6 +1770,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2330,6 +2334,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2987,6 +2997,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3492,6 +3503,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3524,6 +3536,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3653,6 +3666,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3912,6 +3926,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4071,6 +4086,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4777,6 +4793,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4891,11 +4908,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5293,6 +5312,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6134,6 +6154,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6283,6 +6304,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6423,6 +6445,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7845,6 +7868,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8418,6 +8442,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -605,6 +605,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -865,6 +866,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1676,6 +1678,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1766,6 +1769,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2325,6 +2329,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2982,6 +2992,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3486,6 +3497,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3518,6 +3530,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3647,6 +3660,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3906,6 +3920,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4065,6 +4080,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4771,6 +4787,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4885,11 +4902,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5287,6 +5306,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6127,6 +6147,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6276,6 +6297,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6416,6 +6438,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7836,6 +7859,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8408,6 +8432,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -605,6 +605,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -865,6 +866,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1676,6 +1678,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1766,6 +1769,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2325,6 +2329,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2982,6 +2992,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3486,6 +3497,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3518,6 +3530,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3647,6 +3660,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3906,6 +3920,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4064,6 +4079,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4770,6 +4786,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4884,11 +4901,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5285,6 +5304,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6124,6 +6144,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6273,6 +6294,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6413,6 +6435,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7833,6 +7856,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8404,6 +8428,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -605,6 +605,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -865,6 +866,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1674,6 +1676,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1763,6 +1766,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2321,6 +2325,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2975,6 +2985,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3479,6 +3490,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3511,6 +3523,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3640,6 +3653,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3899,6 +3913,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4057,6 +4072,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4762,6 +4778,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4876,11 +4893,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5276,6 +5295,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6114,6 +6134,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6263,6 +6284,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6403,6 +6425,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7823,6 +7846,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8392,6 +8416,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -605,6 +605,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -865,6 +866,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1674,6 +1676,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1763,6 +1766,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2321,6 +2325,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2975,6 +2985,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3478,6 +3489,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3510,6 +3522,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3639,6 +3652,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3897,6 +3911,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4055,6 +4070,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4758,6 +4774,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4872,11 +4889,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5272,6 +5291,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6110,6 +6130,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6259,6 +6280,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6399,6 +6421,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7818,6 +7841,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8387,6 +8411,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -605,6 +605,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -864,6 +865,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1437,6 +1439,7 @@ self: super: {
|
||||
"azure-servicebus" = dontDistribute super."azure-servicebus";
|
||||
"azurify" = dontDistribute super."azurify";
|
||||
"b-tree" = dontDistribute super."b-tree";
|
||||
"b9" = doDistribute super."b9_0_5_16";
|
||||
"babylon" = dontDistribute super."babylon";
|
||||
"backdropper" = dontDistribute super."backdropper";
|
||||
"backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
|
||||
@ -1672,6 +1675,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1761,6 +1765,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2319,6 +2324,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2972,6 +2983,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3475,6 +3487,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3507,6 +3520,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3635,6 +3649,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3893,6 +3908,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4051,6 +4067,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4754,6 +4771,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4868,11 +4886,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5266,6 +5286,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6103,6 +6124,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6251,6 +6273,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6391,6 +6414,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7804,6 +7828,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8373,6 +8398,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -605,6 +605,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -864,6 +865,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1436,6 +1438,7 @@ self: super: {
|
||||
"azure-servicebus" = dontDistribute super."azure-servicebus";
|
||||
"azurify" = dontDistribute super."azurify";
|
||||
"b-tree" = dontDistribute super."b-tree";
|
||||
"b9" = doDistribute super."b9_0_5_16";
|
||||
"babylon" = dontDistribute super."babylon";
|
||||
"backdropper" = dontDistribute super."backdropper";
|
||||
"backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
|
||||
@ -1671,6 +1674,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1760,6 +1764,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2316,6 +2321,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2969,6 +2980,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3472,6 +3484,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3504,6 +3517,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3631,6 +3645,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3889,6 +3904,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4047,6 +4063,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4749,6 +4766,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4863,11 +4881,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5260,6 +5280,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6096,6 +6117,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6244,6 +6266,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6384,6 +6407,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7797,6 +7821,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8364,6 +8389,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -605,6 +605,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -864,6 +865,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1436,6 +1438,7 @@ self: super: {
|
||||
"azure-servicebus" = dontDistribute super."azure-servicebus";
|
||||
"azurify" = dontDistribute super."azurify";
|
||||
"b-tree" = dontDistribute super."b-tree";
|
||||
"b9" = doDistribute super."b9_0_5_16";
|
||||
"babylon" = dontDistribute super."babylon";
|
||||
"backdropper" = dontDistribute super."backdropper";
|
||||
"backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
|
||||
@ -1671,6 +1674,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1760,6 +1764,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2315,6 +2320,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2968,6 +2979,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3469,6 +3481,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3501,6 +3514,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3627,6 +3641,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3884,6 +3899,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4041,6 +4057,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4740,6 +4757,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4854,11 +4872,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5251,6 +5271,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6086,6 +6107,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6232,6 +6254,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6372,6 +6395,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7783,6 +7807,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8349,6 +8374,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -604,6 +604,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -863,6 +864,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1433,6 +1435,7 @@ self: super: {
|
||||
"azure-servicebus" = dontDistribute super."azure-servicebus";
|
||||
"azurify" = dontDistribute super."azurify";
|
||||
"b-tree" = dontDistribute super."b-tree";
|
||||
"b9" = doDistribute super."b9_0_5_16";
|
||||
"babylon" = dontDistribute super."babylon";
|
||||
"backdropper" = dontDistribute super."backdropper";
|
||||
"backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
|
||||
@ -1668,6 +1671,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1755,6 +1759,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2309,6 +2314,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2962,6 +2973,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3463,6 +3475,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3495,6 +3508,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3621,6 +3635,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3878,6 +3893,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4035,6 +4051,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4731,6 +4748,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4844,11 +4862,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5240,6 +5260,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6072,6 +6093,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6218,6 +6240,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6358,6 +6381,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7768,6 +7792,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8333,6 +8358,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -609,6 +609,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -870,6 +871,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1691,6 +1693,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1782,6 +1785,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2349,6 +2353,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3016,6 +3026,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3525,6 +3536,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3557,6 +3569,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3686,6 +3699,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3947,6 +3961,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4819,6 +4834,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4935,11 +4951,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5339,6 +5357,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6192,6 +6211,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6489,6 +6509,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7926,6 +7947,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8514,6 +8536,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -603,6 +603,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -862,6 +863,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1431,6 +1433,7 @@ self: super: {
|
||||
"azure-servicebus" = dontDistribute super."azure-servicebus";
|
||||
"azurify" = dontDistribute super."azurify";
|
||||
"b-tree" = dontDistribute super."b-tree";
|
||||
"b9" = doDistribute super."b9_0_5_16";
|
||||
"babylon" = dontDistribute super."babylon";
|
||||
"backdropper" = dontDistribute super."backdropper";
|
||||
"backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
|
||||
@ -1666,6 +1669,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1753,6 +1757,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_7_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2307,6 +2312,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2960,6 +2971,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3461,6 +3473,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3493,6 +3506,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3619,6 +3633,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3876,6 +3891,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4033,6 +4049,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4729,6 +4746,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4842,11 +4860,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5237,6 +5257,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6068,6 +6089,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6214,6 +6236,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6354,6 +6377,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7761,6 +7785,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8325,6 +8350,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -603,6 +603,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -862,6 +863,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1431,6 +1433,7 @@ self: super: {
|
||||
"azure-servicebus" = dontDistribute super."azure-servicebus";
|
||||
"azurify" = dontDistribute super."azurify";
|
||||
"b-tree" = dontDistribute super."b-tree";
|
||||
"b9" = doDistribute super."b9_0_5_16";
|
||||
"babylon" = dontDistribute super."babylon";
|
||||
"backdropper" = dontDistribute super."backdropper";
|
||||
"backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
|
||||
@ -1665,6 +1668,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1752,6 +1756,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_7_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2304,6 +2309,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2955,6 +2966,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3456,6 +3468,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3488,6 +3501,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3614,6 +3628,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3870,6 +3885,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4027,6 +4043,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4721,6 +4738,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4834,11 +4852,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5229,6 +5249,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6057,6 +6078,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6203,6 +6225,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6343,6 +6366,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7737,6 +7761,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8296,6 +8321,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -603,6 +603,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -862,6 +863,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1431,6 +1433,7 @@ self: super: {
|
||||
"azure-servicebus" = dontDistribute super."azure-servicebus";
|
||||
"azurify" = dontDistribute super."azurify";
|
||||
"b-tree" = dontDistribute super."b-tree";
|
||||
"b9" = doDistribute super."b9_0_5_16";
|
||||
"babylon" = dontDistribute super."babylon";
|
||||
"backdropper" = dontDistribute super."backdropper";
|
||||
"backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
|
||||
@ -1665,6 +1668,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1752,6 +1756,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_7_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2304,6 +2309,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2953,6 +2964,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3454,6 +3466,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3486,6 +3499,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3612,6 +3626,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3868,6 +3883,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4024,6 +4040,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4715,6 +4732,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4828,11 +4846,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5223,6 +5243,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6051,6 +6072,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6197,6 +6219,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6337,6 +6360,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7731,6 +7755,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8289,6 +8314,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -609,6 +609,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -870,6 +871,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1690,6 +1692,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1781,6 +1784,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2346,6 +2350,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3012,6 +3022,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3521,6 +3532,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3553,6 +3565,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3682,6 +3695,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3943,6 +3957,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4103,6 +4118,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4813,6 +4829,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4929,11 +4946,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5333,6 +5352,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6186,6 +6206,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6483,6 +6504,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7917,6 +7939,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8503,6 +8526,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -609,6 +609,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -870,6 +871,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1690,6 +1692,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1781,6 +1784,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2346,6 +2350,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3012,6 +3022,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3521,6 +3532,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3553,6 +3565,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3682,6 +3695,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3943,6 +3957,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4103,6 +4118,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4813,6 +4829,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4929,11 +4946,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5333,6 +5352,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6186,6 +6206,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6483,6 +6504,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7916,6 +7938,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8501,6 +8524,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -609,6 +609,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -870,6 +871,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1689,6 +1691,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1780,6 +1783,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2345,6 +2349,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3010,6 +3020,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3519,6 +3530,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3551,6 +3563,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3680,6 +3693,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3940,6 +3954,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4099,6 +4114,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4806,6 +4822,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4922,11 +4939,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5326,6 +5345,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6176,6 +6196,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6472,6 +6493,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7902,6 +7924,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8484,6 +8507,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -609,6 +609,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -870,6 +871,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1689,6 +1691,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1780,6 +1783,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2345,6 +2349,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3010,6 +3020,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3516,6 +3527,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3548,6 +3560,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3677,6 +3690,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3937,6 +3951,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4096,6 +4111,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4803,6 +4819,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4917,11 +4934,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5320,6 +5339,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6168,6 +6188,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6464,6 +6485,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7893,6 +7915,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8473,6 +8496,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -609,6 +609,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -870,6 +871,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1686,6 +1688,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1777,6 +1780,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2341,6 +2345,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -3006,6 +3016,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3512,6 +3523,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3544,6 +3556,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3673,6 +3686,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3932,6 +3946,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4091,6 +4106,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4797,6 +4813,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4911,11 +4928,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5314,6 +5333,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6161,6 +6181,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6313,6 +6334,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6454,6 +6476,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7880,6 +7903,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8458,6 +8482,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -609,6 +609,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -870,6 +871,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1684,6 +1686,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1775,6 +1778,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2338,6 +2342,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2998,6 +3008,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3504,6 +3515,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3536,6 +3548,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3665,6 +3678,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3924,6 +3938,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4083,6 +4098,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4789,6 +4805,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4903,11 +4920,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5305,6 +5324,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6151,6 +6171,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6301,6 +6322,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6441,6 +6463,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7866,6 +7889,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8444,6 +8468,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -608,6 +608,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -868,6 +869,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1681,6 +1683,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomerang" = dontDistribute super."boomerang";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
@ -1772,6 +1775,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = dontDistribute super."cabal-helper";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_6_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2335,6 +2339,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2994,6 +3004,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3499,6 +3510,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3531,6 +3543,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3660,6 +3673,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3919,6 +3933,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -4078,6 +4093,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4784,6 +4800,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4898,11 +4915,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -5300,6 +5319,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -6145,6 +6165,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -6295,6 +6316,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = dontDistribute super."publicsuffix";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6435,6 +6457,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -7860,6 +7883,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"unification-fd" = dontDistribute super."unification-fd";
|
||||
@ -8438,6 +8462,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -587,6 +587,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -843,6 +844,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1200,6 +1202,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"apply-refact" = doDistribute super."apply-refact_0_1_0_0";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
"approximate-equality" = dontDistribute super."approximate-equality";
|
||||
@ -1334,6 +1337,7 @@ self: super: {
|
||||
"azure-servicebus" = dontDistribute super."azure-servicebus";
|
||||
"azurify" = dontDistribute super."azurify";
|
||||
"b-tree" = dontDistribute super."b-tree";
|
||||
"b9" = doDistribute super."b9_0_5_16";
|
||||
"babylon" = dontDistribute super."babylon";
|
||||
"backdropper" = dontDistribute super."backdropper";
|
||||
"backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
|
||||
@ -1556,6 +1560,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
"bot" = dontDistribute super."bot";
|
||||
@ -1640,6 +1645,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = doDistribute super."cabal-helper_0_6_2_0";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_7_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2166,6 +2172,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2788,6 +2800,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3275,6 +3288,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3306,6 +3320,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3429,6 +3444,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3675,6 +3691,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -3828,6 +3845,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4473,6 +4491,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4594,11 +4613,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -4975,6 +4996,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -5067,6 +5089,7 @@ self: super: {
|
||||
"moan" = dontDistribute super."moan";
|
||||
"modbus-tcp" = dontDistribute super."modbus-tcp";
|
||||
"modelicaparser" = dontDistribute super."modelicaparser";
|
||||
"modify-fasta" = doDistribute super."modify-fasta_0_8_0_4";
|
||||
"modsplit" = dontDistribute super."modsplit";
|
||||
"modular-arithmetic" = dontDistribute super."modular-arithmetic";
|
||||
"modular-prelude" = dontDistribute super."modular-prelude";
|
||||
@ -5753,6 +5776,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -5894,6 +5918,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = doDistribute super."publicsuffix_0_20151212";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6030,6 +6055,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -6173,7 +6199,9 @@ self: super: {
|
||||
"resource-simple" = dontDistribute super."resource-simple";
|
||||
"resourcet" = doDistribute super."resourcet_1_1_7";
|
||||
"respond" = dontDistribute super."respond";
|
||||
"rest-core" = doDistribute super."rest-core_0_37";
|
||||
"rest-example" = dontDistribute super."rest-example";
|
||||
"rest-gen" = doDistribute super."rest-gen_0_19_0_1";
|
||||
"restful-snap" = dontDistribute super."restful-snap";
|
||||
"restricted-workers" = dontDistribute super."restricted-workers";
|
||||
"restyle" = dontDistribute super."restyle";
|
||||
@ -7350,6 +7378,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"uniform-io" = dontDistribute super."uniform-io";
|
||||
@ -7817,6 +7846,7 @@ self: super: {
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
"yesod-markdown" = dontDistribute super."yesod-markdown";
|
||||
"yesod-media-simple" = dontDistribute super."yesod-media-simple";
|
||||
"yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5";
|
||||
"yesod-paginate" = dontDistribute super."yesod-paginate";
|
||||
"yesod-pagination" = dontDistribute super."yesod-pagination";
|
||||
"yesod-paginator" = dontDistribute super."yesod-paginator";
|
||||
@ -7862,6 +7892,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -587,6 +587,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -843,6 +844,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1198,6 +1200,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"apply-refact" = doDistribute super."apply-refact_0_1_0_0";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
"approximate-equality" = dontDistribute super."approximate-equality";
|
||||
@ -1332,6 +1335,7 @@ self: super: {
|
||||
"azure-servicebus" = dontDistribute super."azure-servicebus";
|
||||
"azurify" = dontDistribute super."azurify";
|
||||
"b-tree" = dontDistribute super."b-tree";
|
||||
"b9" = doDistribute super."b9_0_5_16";
|
||||
"babylon" = dontDistribute super."babylon";
|
||||
"backdropper" = dontDistribute super."backdropper";
|
||||
"backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
|
||||
@ -1554,6 +1558,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
"bot" = dontDistribute super."bot";
|
||||
@ -1638,6 +1643,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = doDistribute super."cabal-helper_0_6_2_0";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_7_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2164,6 +2170,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2782,6 +2794,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3269,6 +3282,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3300,6 +3314,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3423,6 +3438,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3669,6 +3685,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -3821,6 +3838,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4461,6 +4479,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4582,11 +4601,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -4960,6 +4981,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -5052,6 +5074,7 @@ self: super: {
|
||||
"moan" = dontDistribute super."moan";
|
||||
"modbus-tcp" = dontDistribute super."modbus-tcp";
|
||||
"modelicaparser" = dontDistribute super."modelicaparser";
|
||||
"modify-fasta" = doDistribute super."modify-fasta_0_8_0_4";
|
||||
"modsplit" = dontDistribute super."modsplit";
|
||||
"modular-arithmetic" = dontDistribute super."modular-arithmetic";
|
||||
"modular-prelude" = dontDistribute super."modular-prelude";
|
||||
@ -5736,6 +5759,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -5877,6 +5901,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = doDistribute super."publicsuffix_0_20151212";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -6013,6 +6038,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -6155,7 +6181,9 @@ self: super: {
|
||||
"resource-simple" = dontDistribute super."resource-simple";
|
||||
"resourcet" = doDistribute super."resourcet_1_1_7";
|
||||
"respond" = dontDistribute super."respond";
|
||||
"rest-core" = doDistribute super."rest-core_0_37";
|
||||
"rest-example" = dontDistribute super."rest-example";
|
||||
"rest-gen" = doDistribute super."rest-gen_0_19_0_1";
|
||||
"restful-snap" = dontDistribute super."restful-snap";
|
||||
"restricted-workers" = dontDistribute super."restricted-workers";
|
||||
"restyle" = dontDistribute super."restyle";
|
||||
@ -7331,6 +7359,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"uniform-io" = dontDistribute super."uniform-io";
|
||||
@ -7797,6 +7826,7 @@ self: super: {
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
"yesod-markdown" = dontDistribute super."yesod-markdown";
|
||||
"yesod-media-simple" = dontDistribute super."yesod-media-simple";
|
||||
"yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5";
|
||||
"yesod-paginate" = dontDistribute super."yesod-paginate";
|
||||
"yesod-pagination" = dontDistribute super."yesod-pagination";
|
||||
"yesod-paginator" = dontDistribute super."yesod-paginator";
|
||||
@ -7842,6 +7872,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -585,6 +585,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -840,6 +841,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1193,6 +1195,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"apply-refact" = doDistribute super."apply-refact_0_1_0_0";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
"approximate-equality" = dontDistribute super."approximate-equality";
|
||||
@ -1327,6 +1330,7 @@ self: super: {
|
||||
"azure-servicebus" = dontDistribute super."azure-servicebus";
|
||||
"azurify" = dontDistribute super."azurify";
|
||||
"b-tree" = dontDistribute super."b-tree";
|
||||
"b9" = doDistribute super."b9_0_5_16";
|
||||
"babylon" = dontDistribute super."babylon";
|
||||
"backdropper" = dontDistribute super."backdropper";
|
||||
"backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
|
||||
@ -1549,6 +1553,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
"bot" = dontDistribute super."bot";
|
||||
@ -1632,6 +1637,7 @@ self: super: {
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-helper" = doDistribute super."cabal-helper_0_6_3_0";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_7_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2152,6 +2158,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2761,6 +2773,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -3245,6 +3258,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3276,6 +3290,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3398,6 +3413,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3639,6 +3655,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -3789,6 +3806,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4420,6 +4438,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4541,11 +4560,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -4916,6 +4937,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -5002,11 +5024,13 @@ self: super: {
|
||||
"mkcabal" = dontDistribute super."mkcabal";
|
||||
"ml-w" = dontDistribute super."ml-w";
|
||||
"mlist" = dontDistribute super."mlist";
|
||||
"mmorph" = doDistribute super."mmorph_1_0_5";
|
||||
"mmtl" = dontDistribute super."mmtl";
|
||||
"mmtl-base" = dontDistribute super."mmtl-base";
|
||||
"moan" = dontDistribute super."moan";
|
||||
"modbus-tcp" = dontDistribute super."modbus-tcp";
|
||||
"modelicaparser" = dontDistribute super."modelicaparser";
|
||||
"modify-fasta" = doDistribute super."modify-fasta_0_8_0_4";
|
||||
"modsplit" = dontDistribute super."modsplit";
|
||||
"modular-arithmetic" = dontDistribute super."modular-arithmetic";
|
||||
"modular-prelude" = dontDistribute super."modular-prelude";
|
||||
@ -5029,6 +5053,7 @@ self: super: {
|
||||
"monad-gen" = dontDistribute super."monad-gen";
|
||||
"monad-interleave" = dontDistribute super."monad-interleave";
|
||||
"monad-levels" = dontDistribute super."monad-levels";
|
||||
"monad-logger" = doDistribute super."monad-logger_0_3_17";
|
||||
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
|
||||
"monad-lrs" = dontDistribute super."monad-lrs";
|
||||
"monad-memo" = dontDistribute super."monad-memo";
|
||||
@ -5687,6 +5712,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -5825,6 +5851,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = doDistribute super."publicsuffix_0_20151212";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -5961,6 +5988,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -6101,7 +6129,9 @@ self: super: {
|
||||
"resource-simple" = dontDistribute super."resource-simple";
|
||||
"resourcet" = doDistribute super."resourcet_1_1_7";
|
||||
"respond" = dontDistribute super."respond";
|
||||
"rest-core" = doDistribute super."rest-core_0_37";
|
||||
"rest-example" = dontDistribute super."rest-example";
|
||||
"rest-gen" = doDistribute super."rest-gen_0_19_0_1";
|
||||
"restful-snap" = dontDistribute super."restful-snap";
|
||||
"restricted-workers" = dontDistribute super."restricted-workers";
|
||||
"restyle" = dontDistribute super."restyle";
|
||||
@ -7266,6 +7296,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"uniform-io" = dontDistribute super."uniform-io";
|
||||
@ -7727,6 +7758,7 @@ self: super: {
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
"yesod-markdown" = dontDistribute super."yesod-markdown";
|
||||
"yesod-media-simple" = dontDistribute super."yesod-media-simple";
|
||||
"yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5";
|
||||
"yesod-paginate" = dontDistribute super."yesod-paginate";
|
||||
"yesod-pagination" = dontDistribute super."yesod-pagination";
|
||||
"yesod-paginator" = dontDistribute super."yesod-paginator";
|
||||
@ -7772,6 +7804,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -576,6 +576,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -828,6 +829,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1178,6 +1180,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"apply-refact" = doDistribute super."apply-refact_0_1_0_0";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
"approximate-equality" = dontDistribute super."approximate-equality";
|
||||
@ -1310,6 +1313,7 @@ self: super: {
|
||||
"azure-servicebus" = dontDistribute super."azure-servicebus";
|
||||
"azurify" = dontDistribute super."azurify";
|
||||
"b-tree" = dontDistribute super."b-tree";
|
||||
"b9" = doDistribute super."b9_0_5_16";
|
||||
"babylon" = dontDistribute super."babylon";
|
||||
"backdropper" = dontDistribute super."backdropper";
|
||||
"backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
|
||||
@ -1526,6 +1530,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
"bot" = dontDistribute super."bot";
|
||||
@ -1605,6 +1610,7 @@ self: super: {
|
||||
"cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_7_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2114,6 +2120,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2544,6 +2556,7 @@ self: super: {
|
||||
"error-message" = dontDistribute super."error-message";
|
||||
"error-util" = dontDistribute super."error-util";
|
||||
"errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance";
|
||||
"errors" = doDistribute super."errors_2_1_1";
|
||||
"ersatz" = dontDistribute super."ersatz";
|
||||
"ersatz-toysat" = dontDistribute super."ersatz-toysat";
|
||||
"ert" = dontDistribute super."ert";
|
||||
@ -2704,6 +2717,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -2944,6 +2958,7 @@ self: super: {
|
||||
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
|
||||
"ghc-syb" = dontDistribute super."ghc-syb";
|
||||
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
|
||||
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
@ -2995,6 +3010,7 @@ self: super: {
|
||||
"gitHUD" = dontDistribute super."gitHUD";
|
||||
"gitcache" = dontDistribute super."gitcache";
|
||||
"gitdo" = dontDistribute super."gitdo";
|
||||
"github" = doDistribute super."github_0_14_0";
|
||||
"github-backup" = dontDistribute super."github-backup";
|
||||
"github-post-receive" = dontDistribute super."github-post-receive";
|
||||
"github-utils" = dontDistribute super."github-utils";
|
||||
@ -3175,6 +3191,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3205,6 +3222,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3325,6 +3343,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3566,6 +3585,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -3716,6 +3736,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4337,6 +4358,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4456,11 +4478,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -4828,6 +4852,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -4903,11 +4928,13 @@ self: super: {
|
||||
"mkcabal" = dontDistribute super."mkcabal";
|
||||
"ml-w" = dontDistribute super."ml-w";
|
||||
"mlist" = dontDistribute super."mlist";
|
||||
"mmorph" = doDistribute super."mmorph_1_0_5";
|
||||
"mmtl" = dontDistribute super."mmtl";
|
||||
"mmtl-base" = dontDistribute super."mmtl-base";
|
||||
"moan" = dontDistribute super."moan";
|
||||
"modbus-tcp" = dontDistribute super."modbus-tcp";
|
||||
"modelicaparser" = dontDistribute super."modelicaparser";
|
||||
"modify-fasta" = doDistribute super."modify-fasta_0_8_0_4";
|
||||
"modsplit" = dontDistribute super."modsplit";
|
||||
"modular-arithmetic" = dontDistribute super."modular-arithmetic";
|
||||
"modular-prelude" = dontDistribute super."modular-prelude";
|
||||
@ -4930,6 +4957,7 @@ self: super: {
|
||||
"monad-gen" = dontDistribute super."monad-gen";
|
||||
"monad-interleave" = dontDistribute super."monad-interleave";
|
||||
"monad-levels" = dontDistribute super."monad-levels";
|
||||
"monad-logger" = doDistribute super."monad-logger_0_3_17";
|
||||
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
|
||||
"monad-lrs" = dontDistribute super."monad-lrs";
|
||||
"monad-memo" = dontDistribute super."monad-memo";
|
||||
@ -5574,6 +5602,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -5709,6 +5738,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = doDistribute super."publicsuffix_0_20151212";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -5841,6 +5871,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -5979,7 +6010,9 @@ self: super: {
|
||||
"resource-simple" = dontDistribute super."resource-simple";
|
||||
"resourcet" = doDistribute super."resourcet_1_1_7";
|
||||
"respond" = dontDistribute super."respond";
|
||||
"rest-core" = doDistribute super."rest-core_0_37";
|
||||
"rest-example" = dontDistribute super."rest-example";
|
||||
"rest-gen" = doDistribute super."rest-gen_0_19_0_1";
|
||||
"restful-snap" = dontDistribute super."restful-snap";
|
||||
"restricted-workers" = dontDistribute super."restricted-workers";
|
||||
"restyle" = dontDistribute super."restyle";
|
||||
@ -6653,6 +6686,7 @@ self: super: {
|
||||
"svm-light-utils" = dontDistribute super."svm-light-utils";
|
||||
"svm-simple" = dontDistribute super."svm-simple";
|
||||
"svndump" = dontDistribute super."svndump";
|
||||
"swagger2" = doDistribute super."swagger2_1_2_1";
|
||||
"swapper" = dontDistribute super."swapper";
|
||||
"swearjure" = dontDistribute super."swearjure";
|
||||
"swf" = dontDistribute super."swf";
|
||||
@ -7113,6 +7147,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"uniform-io" = dontDistribute super."uniform-io";
|
||||
@ -7561,6 +7596,7 @@ self: super: {
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
"yesod-markdown" = dontDistribute super."yesod-markdown";
|
||||
"yesod-media-simple" = dontDistribute super."yesod-media-simple";
|
||||
"yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5";
|
||||
"yesod-paginate" = dontDistribute super."yesod-paginate";
|
||||
"yesod-pagination" = dontDistribute super."yesod-pagination";
|
||||
"yesod-paginator" = dontDistribute super."yesod-paginator";
|
||||
@ -7606,6 +7642,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
@ -574,6 +574,7 @@ self: super: {
|
||||
"LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy";
|
||||
"Lastik" = dontDistribute super."Lastik";
|
||||
"Lattices" = dontDistribute super."Lattices";
|
||||
"Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2";
|
||||
"LazyVault" = dontDistribute super."LazyVault";
|
||||
"Level0" = dontDistribute super."Level0";
|
||||
"LibClang" = dontDistribute super."LibClang";
|
||||
@ -826,6 +827,7 @@ self: super: {
|
||||
"SimpleGL" = dontDistribute super."SimpleGL";
|
||||
"SimpleH" = dontDistribute super."SimpleH";
|
||||
"SimpleLog" = dontDistribute super."SimpleLog";
|
||||
"SimpleServer" = dontDistribute super."SimpleServer";
|
||||
"SizeCompare" = dontDistribute super."SizeCompare";
|
||||
"Slides" = dontDistribute super."Slides";
|
||||
"Smooth" = dontDistribute super."Smooth";
|
||||
@ -1174,6 +1176,7 @@ self: super: {
|
||||
"applicative-numbers" = dontDistribute super."applicative-numbers";
|
||||
"applicative-parsec" = dontDistribute super."applicative-parsec";
|
||||
"applicative-quoters" = dontDistribute super."applicative-quoters";
|
||||
"apply-refact" = doDistribute super."apply-refact_0_1_0_0";
|
||||
"apportionment" = dontDistribute super."apportionment";
|
||||
"approx-rand-test" = dontDistribute super."approx-rand-test";
|
||||
"approximate-equality" = dontDistribute super."approximate-equality";
|
||||
@ -1303,6 +1306,7 @@ self: super: {
|
||||
"azure-servicebus" = dontDistribute super."azure-servicebus";
|
||||
"azurify" = dontDistribute super."azurify";
|
||||
"b-tree" = dontDistribute super."b-tree";
|
||||
"b9" = doDistribute super."b9_0_5_16";
|
||||
"babylon" = dontDistribute super."babylon";
|
||||
"backdropper" = dontDistribute super."backdropper";
|
||||
"backtracking-exceptions" = dontDistribute super."backtracking-exceptions";
|
||||
@ -1517,6 +1521,7 @@ self: super: {
|
||||
"bools" = dontDistribute super."bools";
|
||||
"boolsimplifier" = dontDistribute super."boolsimplifier";
|
||||
"boomange" = dontDistribute super."boomange";
|
||||
"boombox" = dontDistribute super."boombox";
|
||||
"boomslang" = dontDistribute super."boomslang";
|
||||
"borel" = dontDistribute super."borel";
|
||||
"bot" = dontDistribute super."bot";
|
||||
@ -1595,6 +1600,7 @@ self: super: {
|
||||
"cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags";
|
||||
"cabal-ghci" = dontDistribute super."cabal-ghci";
|
||||
"cabal-graphdeps" = dontDistribute super."cabal-graphdeps";
|
||||
"cabal-info" = dontDistribute super."cabal-info";
|
||||
"cabal-install" = doDistribute super."cabal-install_1_22_7_0";
|
||||
"cabal-install-bundle" = dontDistribute super."cabal-install-bundle";
|
||||
"cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72";
|
||||
@ -2097,6 +2103,12 @@ self: super: {
|
||||
"data-construction" = dontDistribute super."data-construction";
|
||||
"data-cycle" = dontDistribute super."data-cycle";
|
||||
"data-default-generics" = dontDistribute super."data-default-generics";
|
||||
"data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring";
|
||||
"data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive";
|
||||
"data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base";
|
||||
"data-default-instances-text" = dontDistribute super."data-default-instances-text";
|
||||
"data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers";
|
||||
"data-default-instances-vector" = dontDistribute super."data-default-instances-vector";
|
||||
"data-dispersal" = dontDistribute super."data-dispersal";
|
||||
"data-dword" = dontDistribute super."data-dword";
|
||||
"data-easy" = dontDistribute super."data-easy";
|
||||
@ -2527,6 +2539,7 @@ self: super: {
|
||||
"error-message" = dontDistribute super."error-message";
|
||||
"error-util" = dontDistribute super."error-util";
|
||||
"errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance";
|
||||
"errors" = doDistribute super."errors_2_1_1";
|
||||
"ersatz" = dontDistribute super."ersatz";
|
||||
"ersatz-toysat" = dontDistribute super."ersatz-toysat";
|
||||
"ert" = dontDistribute super."ert";
|
||||
@ -2687,6 +2700,7 @@ self: super: {
|
||||
"fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal";
|
||||
"fixedprec" = dontDistribute super."fixedprec";
|
||||
"fixedwidth-hs" = dontDistribute super."fixedwidth-hs";
|
||||
"fixfile" = dontDistribute super."fixfile";
|
||||
"fixhs" = dontDistribute super."fixhs";
|
||||
"fixplate" = dontDistribute super."fixplate";
|
||||
"fixpoint" = dontDistribute super."fixpoint";
|
||||
@ -2927,6 +2941,7 @@ self: super: {
|
||||
"ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin";
|
||||
"ghc-syb" = dontDistribute super."ghc-syb";
|
||||
"ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof";
|
||||
"ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4";
|
||||
"ghc-vis" = dontDistribute super."ghc-vis";
|
||||
"ghci-diagrams" = dontDistribute super."ghci-diagrams";
|
||||
"ghci-haskeline" = dontDistribute super."ghci-haskeline";
|
||||
@ -2978,6 +2993,7 @@ self: super: {
|
||||
"gitHUD" = dontDistribute super."gitHUD";
|
||||
"gitcache" = dontDistribute super."gitcache";
|
||||
"gitdo" = dontDistribute super."gitdo";
|
||||
"github" = doDistribute super."github_0_14_0";
|
||||
"github-backup" = dontDistribute super."github-backup";
|
||||
"github-post-receive" = dontDistribute super."github-post-receive";
|
||||
"github-utils" = dontDistribute super."github-utils";
|
||||
@ -3158,6 +3174,7 @@ self: super: {
|
||||
"grapefruit-records" = dontDistribute super."grapefruit-records";
|
||||
"grapefruit-ui" = dontDistribute super."grapefruit-ui";
|
||||
"grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk";
|
||||
"graph-core" = doDistribute super."graph-core_0_2_2_0";
|
||||
"graph-generators" = dontDistribute super."graph-generators";
|
||||
"graph-matchings" = dontDistribute super."graph-matchings";
|
||||
"graph-rewriting" = dontDistribute super."graph-rewriting";
|
||||
@ -3188,6 +3205,7 @@ self: super: {
|
||||
"greencard-lib" = dontDistribute super."greencard-lib";
|
||||
"greg-client" = dontDistribute super."greg-client";
|
||||
"gremlin-haskell" = dontDistribute super."gremlin-haskell";
|
||||
"greplicate" = dontDistribute super."greplicate";
|
||||
"grid" = dontDistribute super."grid";
|
||||
"gridland" = dontDistribute super."gridland";
|
||||
"grm" = dontDistribute super."grm";
|
||||
@ -3308,6 +3326,7 @@ self: super: {
|
||||
"haeredes" = dontDistribute super."haeredes";
|
||||
"haggis" = dontDistribute super."haggis";
|
||||
"haha" = dontDistribute super."haha";
|
||||
"hahp" = dontDistribute super."hahp";
|
||||
"haiji" = dontDistribute super."haiji";
|
||||
"hailgun" = dontDistribute super."hailgun";
|
||||
"hailgun-send" = dontDistribute super."hailgun-send";
|
||||
@ -3547,6 +3566,7 @@ self: super: {
|
||||
"hcheat" = dontDistribute super."hcheat";
|
||||
"hchesslib" = dontDistribute super."hchesslib";
|
||||
"hcltest" = dontDistribute super."hcltest";
|
||||
"hcoap" = dontDistribute super."hcoap";
|
||||
"hcron" = dontDistribute super."hcron";
|
||||
"hcube" = dontDistribute super."hcube";
|
||||
"hcwiid" = dontDistribute super."hcwiid";
|
||||
@ -3697,6 +3717,7 @@ self: super: {
|
||||
"hjcase" = dontDistribute super."hjcase";
|
||||
"hjpath" = dontDistribute super."hjpath";
|
||||
"hjs" = dontDistribute super."hjs";
|
||||
"hjsmin" = doDistribute super."hjsmin_0_1_5_1";
|
||||
"hjson" = dontDistribute super."hjson";
|
||||
"hjson-query" = dontDistribute super."hjson-query";
|
||||
"hjsonpointer" = dontDistribute super."hjsonpointer";
|
||||
@ -4317,6 +4338,7 @@ self: super: {
|
||||
"json-fu" = dontDistribute super."json-fu";
|
||||
"json-litobj" = dontDistribute super."json-litobj";
|
||||
"json-pointer" = dontDistribute super."json-pointer";
|
||||
"json-pointer-hasql" = dontDistribute super."json-pointer-hasql";
|
||||
"json-python" = dontDistribute super."json-python";
|
||||
"json-qq" = dontDistribute super."json-qq";
|
||||
"json-rpc" = dontDistribute super."json-rpc";
|
||||
@ -4436,11 +4458,13 @@ self: super: {
|
||||
"lambdacms-media" = dontDistribute super."lambdacms-media";
|
||||
"lambdacube" = dontDistribute super."lambdacube";
|
||||
"lambdacube-bullet" = dontDistribute super."lambdacube-bullet";
|
||||
"lambdacube-compiler" = dontDistribute super."lambdacube-compiler";
|
||||
"lambdacube-core" = dontDistribute super."lambdacube-core";
|
||||
"lambdacube-edsl" = dontDistribute super."lambdacube-edsl";
|
||||
"lambdacube-engine" = dontDistribute super."lambdacube-engine";
|
||||
"lambdacube-examples" = dontDistribute super."lambdacube-examples";
|
||||
"lambdacube-gl" = dontDistribute super."lambdacube-gl";
|
||||
"lambdacube-ir" = dontDistribute super."lambdacube-ir";
|
||||
"lambdacube-samples" = dontDistribute super."lambdacube-samples";
|
||||
"lambdatex" = dontDistribute super."lambdatex";
|
||||
"lambdatwit" = dontDistribute super."lambdatwit";
|
||||
@ -4805,6 +4829,7 @@ self: super: {
|
||||
"mdapi" = dontDistribute super."mdapi";
|
||||
"mdcat" = dontDistribute super."mdcat";
|
||||
"mdo" = dontDistribute super."mdo";
|
||||
"mdp" = dontDistribute super."mdp";
|
||||
"mecab" = dontDistribute super."mecab";
|
||||
"mecha" = dontDistribute super."mecha";
|
||||
"mediawiki" = dontDistribute super."mediawiki";
|
||||
@ -4880,11 +4905,13 @@ self: super: {
|
||||
"mkcabal" = dontDistribute super."mkcabal";
|
||||
"ml-w" = dontDistribute super."ml-w";
|
||||
"mlist" = dontDistribute super."mlist";
|
||||
"mmorph" = doDistribute super."mmorph_1_0_5";
|
||||
"mmtl" = dontDistribute super."mmtl";
|
||||
"mmtl-base" = dontDistribute super."mmtl-base";
|
||||
"moan" = dontDistribute super."moan";
|
||||
"modbus-tcp" = dontDistribute super."modbus-tcp";
|
||||
"modelicaparser" = dontDistribute super."modelicaparser";
|
||||
"modify-fasta" = doDistribute super."modify-fasta_0_8_0_4";
|
||||
"modsplit" = dontDistribute super."modsplit";
|
||||
"modular-arithmetic" = dontDistribute super."modular-arithmetic";
|
||||
"modular-prelude" = dontDistribute super."modular-prelude";
|
||||
@ -4905,6 +4932,7 @@ self: super: {
|
||||
"monad-gen" = dontDistribute super."monad-gen";
|
||||
"monad-interleave" = dontDistribute super."monad-interleave";
|
||||
"monad-levels" = dontDistribute super."monad-levels";
|
||||
"monad-logger" = doDistribute super."monad-logger_0_3_17";
|
||||
"monad-loops-stm" = dontDistribute super."monad-loops-stm";
|
||||
"monad-lrs" = dontDistribute super."monad-lrs";
|
||||
"monad-memo" = dontDistribute super."monad-memo";
|
||||
@ -5549,6 +5577,7 @@ self: super: {
|
||||
"polytypeable" = dontDistribute super."polytypeable";
|
||||
"polytypeable-utils" = dontDistribute super."polytypeable-utils";
|
||||
"ponder" = dontDistribute super."ponder";
|
||||
"pong-server" = dontDistribute super."pong-server";
|
||||
"pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver";
|
||||
"pontarius-xmpp" = dontDistribute super."pontarius-xmpp";
|
||||
"pontarius-xpmn" = dontDistribute super."pontarius-xpmn";
|
||||
@ -5684,6 +5713,7 @@ self: super: {
|
||||
"pseudo-boolean" = dontDistribute super."pseudo-boolean";
|
||||
"pseudo-trie" = dontDistribute super."pseudo-trie";
|
||||
"pseudomacros" = dontDistribute super."pseudomacros";
|
||||
"psqueues" = doDistribute super."psqueues_0_2_0_3";
|
||||
"pub" = dontDistribute super."pub";
|
||||
"publicsuffix" = doDistribute super."publicsuffix_0_20151212";
|
||||
"publicsuffixlist" = dontDistribute super."publicsuffixlist";
|
||||
@ -5816,6 +5846,7 @@ self: super: {
|
||||
"reactive-balsa" = dontDistribute super."reactive-balsa";
|
||||
"reactive-banana" = dontDistribute super."reactive-banana";
|
||||
"reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl";
|
||||
"reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2";
|
||||
"reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny";
|
||||
"reactive-banana-wx" = dontDistribute super."reactive-banana-wx";
|
||||
"reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip";
|
||||
@ -5952,7 +5983,9 @@ self: super: {
|
||||
"resource-pool-monad" = dontDistribute super."resource-pool-monad";
|
||||
"resource-simple" = dontDistribute super."resource-simple";
|
||||
"respond" = dontDistribute super."respond";
|
||||
"rest-core" = doDistribute super."rest-core_0_37";
|
||||
"rest-example" = dontDistribute super."rest-example";
|
||||
"rest-gen" = doDistribute super."rest-gen_0_19_0_1";
|
||||
"restful-snap" = dontDistribute super."restful-snap";
|
||||
"restricted-workers" = dontDistribute super."restricted-workers";
|
||||
"restyle" = dontDistribute super."restyle";
|
||||
@ -6190,6 +6223,7 @@ self: super: {
|
||||
"servant-postgresql" = dontDistribute super."servant-postgresql";
|
||||
"servant-response" = dontDistribute super."servant-response";
|
||||
"servant-scotty" = dontDistribute super."servant-scotty";
|
||||
"servant-swagger" = doDistribute super."servant-swagger_0_1_2";
|
||||
"ses-html-snaplet" = dontDistribute super."ses-html-snaplet";
|
||||
"sessions" = dontDistribute super."sessions";
|
||||
"set-cover" = dontDistribute super."set-cover";
|
||||
@ -6599,6 +6633,7 @@ self: super: {
|
||||
"subnet" = dontDistribute super."subnet";
|
||||
"subtitleParser" = dontDistribute super."subtitleParser";
|
||||
"subtitles" = dontDistribute super."subtitles";
|
||||
"success" = doDistribute super."success_0_2_5";
|
||||
"suffixarray" = dontDistribute super."suffixarray";
|
||||
"suffixtree" = dontDistribute super."suffixtree";
|
||||
"sugarhaskell" = dontDistribute super."sugarhaskell";
|
||||
@ -6623,6 +6658,7 @@ self: super: {
|
||||
"svm-light-utils" = dontDistribute super."svm-light-utils";
|
||||
"svm-simple" = dontDistribute super."svm-simple";
|
||||
"svndump" = dontDistribute super."svndump";
|
||||
"swagger2" = doDistribute super."swagger2_1_2_1";
|
||||
"swapper" = dontDistribute super."swapper";
|
||||
"swearjure" = dontDistribute super."swearjure";
|
||||
"swf" = dontDistribute super."swf";
|
||||
@ -7082,6 +7118,7 @@ self: super: {
|
||||
"unicode-normalization" = dontDistribute super."unicode-normalization";
|
||||
"unicode-prelude" = dontDistribute super."unicode-prelude";
|
||||
"unicode-properties" = dontDistribute super."unicode-properties";
|
||||
"unicode-show" = dontDistribute super."unicode-show";
|
||||
"unicode-symbols" = dontDistribute super."unicode-symbols";
|
||||
"unicoder" = dontDistribute super."unicoder";
|
||||
"uniform-io" = dontDistribute super."uniform-io";
|
||||
@ -7529,6 +7566,7 @@ self: super: {
|
||||
"yesod-lucid" = dontDistribute super."yesod-lucid";
|
||||
"yesod-markdown" = dontDistribute super."yesod-markdown";
|
||||
"yesod-media-simple" = dontDistribute super."yesod-media-simple";
|
||||
"yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5";
|
||||
"yesod-paginate" = dontDistribute super."yesod-paginate";
|
||||
"yesod-pagination" = dontDistribute super."yesod-pagination";
|
||||
"yesod-paginator" = dontDistribute super."yesod-paginator";
|
||||
@ -7573,6 +7611,7 @@ self: super: {
|
||||
"yjsvg" = dontDistribute super."yjsvg";
|
||||
"yjtools" = dontDistribute super."yjtools";
|
||||
"yocto" = dontDistribute super."yocto";
|
||||
"yoctoparsec" = dontDistribute super."yoctoparsec";
|
||||
"yoko" = dontDistribute super."yoko";
|
||||
"york-lava" = dontDistribute super."york-lava";
|
||||
"youtube" = dontDistribute super."youtube";
|
||||
|
||||
7646
pkgs/development/haskell-modules/configuration-lts-5.2.nix
Normal file
7646
pkgs/development/haskell-modules/configuration-lts-5.2.nix
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -3,10 +3,10 @@
|
||||
|
||||
let
|
||||
|
||||
listVersion = "2016-01-15";
|
||||
listVersion = "2016-02-06";
|
||||
listSources = fetchFromGitHub {
|
||||
sha256 = "1smn4fl0fhldy7gdn0k1diyghbxdxnr4cj921bjdl2i4wxas41g5";
|
||||
rev = "77cb90dce70827bda40384e1ae8bff3c958daef3";
|
||||
sha256 = "0jh1fbfyi9zdhw77brfdkw7mcbr03dqww8yv703kp69fqhyf2pln";
|
||||
rev = "0efc1a2f0ec93163273f6c5c2f511a19f5cd5805";
|
||||
repo = "list";
|
||||
owner = "publicsuffix";
|
||||
};
|
||||
|
||||
65
pkgs/development/libraries/science/math/openblas/0.2.14.nix
Normal file
65
pkgs/development/libraries/science/math/openblas/0.2.14.nix
Normal file
@ -0,0 +1,65 @@
|
||||
{ stdenv, fetchurl, gfortran, perl, which, config, coreutils
|
||||
# Most packages depending on openblas expect integer width to match pointer width,
|
||||
# but some expect to use 32-bit integers always (for compatibility with reference BLAS).
|
||||
, blas64 ? null
|
||||
}:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
let blas64_ = blas64; in
|
||||
|
||||
let local = config.openblas.preferLocalBuild or false;
|
||||
binary =
|
||||
{ i686-linux = "32";
|
||||
x86_64-linux = "64";
|
||||
x86_64-darwin = "64";
|
||||
}."${stdenv.system}" or (throw "unsupported system: ${stdenv.system}");
|
||||
genericFlags =
|
||||
[ "DYNAMIC_ARCH=1"
|
||||
"NUM_THREADS=64"
|
||||
];
|
||||
localFlags = config.openblas.flags or
|
||||
optionals (hasAttr "target" config.openblas) [ "TARGET=${config.openblas.target}" ];
|
||||
blas64 = if blas64_ != null then blas64_ else hasPrefix "x86_64" stdenv.system;
|
||||
|
||||
version = "0.2.14";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "openblas-${version}";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/xianyi/OpenBLAS/archive/v${version}.tar.gz";
|
||||
sha256 = "2411c4f56f477b42dff54db2b7ffc0b7cf53bb9778d54982595c64cc69c40fc1";
|
||||
name = "openblas-${version}.tar.gz";
|
||||
};
|
||||
|
||||
inherit blas64;
|
||||
|
||||
nativeBuildInputs = optionals stdenv.isDarwin [coreutils] ++ [gfortran perl which];
|
||||
|
||||
makeFlags =
|
||||
(if local then localFlags else genericFlags)
|
||||
++
|
||||
optionals stdenv.isDarwin ["MACOSX_DEPLOYMENT_TARGET=10.9"]
|
||||
++
|
||||
[
|
||||
"FC=gfortran"
|
||||
# Note that clang is available through the stdenv on OSX and
|
||||
# thus is not an explicit dependency.
|
||||
"CC=${if stdenv.isDarwin then "clang" else "gcc"}"
|
||||
''PREFIX="''$(out)"''
|
||||
"BINARY=${binary}"
|
||||
"USE_OPENMP=${if stdenv.isDarwin then "0" else "1"}"
|
||||
"INTERFACE64=${if blas64 then "1" else "0"}"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
checkTarget = "tests";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Basic Linear Algebra Subprograms";
|
||||
license = licenses.bsd3;
|
||||
homepage = "https://github.com/xianyi/OpenBLAS";
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ ttuegel ];
|
||||
};
|
||||
}
|
||||
@ -2,8 +2,8 @@
|
||||
|
||||
let
|
||||
wheel_source = fetchurl {
|
||||
url = "https://pypi.python.org/packages/py2.py3/w/wheel/wheel-0.26.0-py2.py3-none-any.whl";
|
||||
sha256 = "1sl642ncvipqx0hzypvl5hsiqngy0sib0kq242g4mic7vnid6bn9";
|
||||
url = "https://pypi.python.org/packages/py2.py3/w/wheel/wheel-0.29.0-py2.py3-none-any.whl";
|
||||
sha256 = "ea8033fc9905804e652f75474d33410a07404c1a78dd3c949a66863bd1050ebd";
|
||||
};
|
||||
setuptools_source = fetchurl {
|
||||
url = "https://pypi.python.org/packages/3.5/s/setuptools/setuptools-19.4-py2.py3-none-any.whl";
|
||||
@ -11,11 +11,11 @@ let
|
||||
};
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "python-${python.version}-bootstrapped-pip-${version}";
|
||||
version = "7.1.2";
|
||||
version = "8.0.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://pypi.python.org/packages/py2.py3/p/pip/pip-${version}-py2.py3-none-any.whl";
|
||||
sha256 = "133hx6jaspm6hd02gza66lng37l65yficc2y2x1gh16fbhxrilxr";
|
||||
sha256 = "249a6f3194be8c2e8cb4d4be3f6fd16a9f1e3336218caffa8e7419e3816f9988";
|
||||
};
|
||||
|
||||
unpackPhase = ''
|
||||
@ -27,12 +27,6 @@ in stdenv.mkDerivation rec {
|
||||
|
||||
patchPhase = ''
|
||||
mkdir -p $out/bin
|
||||
|
||||
# patch pip to support "pip install --prefix"
|
||||
# https://github.com/pypa/pip/pull/3252
|
||||
pushd $out/${python.sitePackages}/
|
||||
patch -p1 < ${./pip-7.0.1-prefix.patch}
|
||||
popd
|
||||
'';
|
||||
|
||||
buildInputs = [ python makeWrapper unzip ];
|
||||
|
||||
@ -1,151 +0,0 @@
|
||||
commit e87c83d95bb91acdca92202e94488ca51a70e059
|
||||
Author: Domen Kožar <domen@dev.si>
|
||||
Date: Mon Nov 16 17:39:44 2015 +0100
|
||||
|
||||
WIP
|
||||
|
||||
diff --git a/pip/commands/install.py b/pip/commands/install.py
|
||||
index dbcf100..05d5a08 100644
|
||||
--- a/pip/commands/install.py
|
||||
+++ b/pip/commands/install.py
|
||||
@@ -139,6 +139,13 @@ class InstallCommand(RequirementCommand):
|
||||
"directory.")
|
||||
|
||||
cmd_opts.add_option(
|
||||
+ '--prefix',
|
||||
+ dest='prefix_path',
|
||||
+ metavar='dir',
|
||||
+ default=None,
|
||||
+ help="Installation prefix where lib, bin and other top-level folders are placed")
|
||||
+
|
||||
+ cmd_opts.add_option(
|
||||
"--compile",
|
||||
action="store_true",
|
||||
dest="compile",
|
||||
@@ -309,6 +316,7 @@ class InstallCommand(RequirementCommand):
|
||||
install_options,
|
||||
global_options,
|
||||
root=options.root_path,
|
||||
+ prefix=options.prefix_path,
|
||||
)
|
||||
reqs = sorted(
|
||||
requirement_set.successfully_installed,
|
||||
diff --git a/pip/locations.py b/pip/locations.py
|
||||
index 4e6f65d..43aeb1f 100644
|
||||
--- a/pip/locations.py
|
||||
+++ b/pip/locations.py
|
||||
@@ -163,7 +163,7 @@ site_config_files = [
|
||||
|
||||
|
||||
def distutils_scheme(dist_name, user=False, home=None, root=None,
|
||||
- isolated=False):
|
||||
+ isolated=False, prefix=None):
|
||||
"""
|
||||
Return a distutils install scheme
|
||||
"""
|
||||
@@ -187,6 +187,8 @@ def distutils_scheme(dist_name, user=False, home=None, root=None,
|
||||
i.user = user or i.user
|
||||
if user:
|
||||
i.prefix = ""
|
||||
+ else:
|
||||
+ i.prefix = prefix or i.prefix
|
||||
i.home = home or i.home
|
||||
i.root = root or i.root
|
||||
i.finalize_options()
|
||||
diff --git a/pip/req/req_install.py b/pip/req/req_install.py
|
||||
index 7c5bf8f..6f80a18 100644
|
||||
--- a/pip/req/req_install.py
|
||||
+++ b/pip/req/req_install.py
|
||||
@@ -792,7 +792,7 @@ exec(compile(
|
||||
else:
|
||||
return True
|
||||
|
||||
- def install(self, install_options, global_options=[], root=None):
|
||||
+ def install(self, install_options, global_options=[], root=None, prefix=None):
|
||||
if self.editable:
|
||||
self.install_editable(install_options, global_options)
|
||||
return
|
||||
@@ -800,7 +800,7 @@ exec(compile(
|
||||
version = pip.wheel.wheel_version(self.source_dir)
|
||||
pip.wheel.check_compatibility(version, self.name)
|
||||
|
||||
- self.move_wheel_files(self.source_dir, root=root)
|
||||
+ self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
|
||||
self.install_succeeded = True
|
||||
return
|
||||
|
||||
@@ -833,6 +833,8 @@ exec(compile(
|
||||
|
||||
if root is not None:
|
||||
install_args += ['--root', root]
|
||||
+ if prefix is not None:
|
||||
+ install_args += ['--prefix', prefix]
|
||||
|
||||
if self.pycompile:
|
||||
install_args += ["--compile"]
|
||||
@@ -988,12 +990,13 @@ exec(compile(
|
||||
def is_wheel(self):
|
||||
return self.link and self.link.is_wheel
|
||||
|
||||
- def move_wheel_files(self, wheeldir, root=None):
|
||||
+ def move_wheel_files(self, wheeldir, root=None, prefix=None):
|
||||
move_wheel_files(
|
||||
self.name, self.req, wheeldir,
|
||||
user=self.use_user_site,
|
||||
home=self.target_dir,
|
||||
root=root,
|
||||
+ prefix=prefix,
|
||||
pycompile=self.pycompile,
|
||||
isolated=self.isolated,
|
||||
)
|
||||
diff --git a/pip/wheel.py b/pip/wheel.py
|
||||
index 403f48b..14eb141 100644
|
||||
--- a/pip/wheel.py
|
||||
+++ b/pip/wheel.py
|
||||
@@ -234,12 +234,12 @@ def get_entrypoints(filename):
|
||||
|
||||
|
||||
def move_wheel_files(name, req, wheeldir, user=False, home=None, root=None,
|
||||
- pycompile=True, scheme=None, isolated=False):
|
||||
+ pycompile=True, scheme=None, isolated=False, prefix=None):
|
||||
"""Install a wheel"""
|
||||
|
||||
if not scheme:
|
||||
scheme = distutils_scheme(
|
||||
- name, user=user, home=home, root=root, isolated=isolated
|
||||
+ name, user=user, home=home, root=root, isolated=isolated, prefix=prefix,
|
||||
)
|
||||
|
||||
if root_is_purelib(name, wheeldir):
|
||||
diff --git a/pip/req/req_install.py b/pip/req/req_install.py
|
||||
index 51bf4a7..e2e285e 100644
|
||||
--- a/pip/req/req_install.py
|
||||
+++ b/pip/req/req_install.py
|
||||
@@ -795,7 +795,7 @@ exec(compile(
|
||||
def install(self, install_options, global_options=[], root=None,
|
||||
prefix=None):
|
||||
if self.editable:
|
||||
- self.install_editable(install_options, global_options)
|
||||
+ self.install_editable(install_options, global_options, prefix=prefix)
|
||||
return
|
||||
if self.is_wheel:
|
||||
version = pip.wheel.wheel_version(self.source_dir)
|
||||
@@ -929,12 +929,16 @@ exec(compile(
|
||||
rmtree(self._temp_build_dir)
|
||||
self._temp_build_dir = None
|
||||
|
||||
- def install_editable(self, install_options, global_options=()):
|
||||
+ def install_editable(self, install_options, global_options=(), prefix=None):
|
||||
logger.info('Running setup.py develop for %s', self.name)
|
||||
|
||||
if self.isolated:
|
||||
global_options = list(global_options) + ["--no-user-cfg"]
|
||||
|
||||
+ if prefix:
|
||||
+ prefix_param = ['--prefix={0}'.format(prefix)]
|
||||
+ install_options = list(install_options) + prefix_param
|
||||
+
|
||||
with indent_log():
|
||||
# FIXME: should we do --install-headers here too?
|
||||
cwd = self.source_dir
|
||||
|
||||
47
pkgs/development/python-modules/cairocffi/dlopen-paths.patch
Normal file
47
pkgs/development/python-modules/cairocffi/dlopen-paths.patch
Normal file
@ -0,0 +1,47 @@
|
||||
commit 705dc9a55bd160625d9996e63fc7dc532d0ad0ab
|
||||
Author: Alexander V. Nikolaev <avn@avnik.info>
|
||||
Date: Sat Feb 6 08:09:06 2016 +0200
|
||||
|
||||
Patch dlopen() to allow direct paths to all required libs
|
||||
|
||||
This patch is NixOS specific
|
||||
|
||||
diff --git a/cairocffi/__init__.py b/cairocffi/__init__.py
|
||||
index 718aa7f..1a1dcff 100644
|
||||
--- a/cairocffi/__init__.py
|
||||
+++ b/cairocffi/__init__.py
|
||||
@@ -27,20 +27,22 @@ VERSION = '0.7.2'
|
||||
version = '1.10.0'
|
||||
version_info = (1, 10, 0)
|
||||
|
||||
+# Use hardcoded soname, because ctypes.util use gcc/objdump which shouldn't be required for runtime
|
||||
+_LIBS = {
|
||||
+ 'cairo': '@cairo@/lib/libcairo.so.2',
|
||||
+ 'glib-2.0': '@glib@/lib/libglib-2.0.so.0',
|
||||
+ 'gobject-2.0': '@glib@/lib/libgobject-2.0.so.0',
|
||||
+ 'gdk_pixbuf-2.0': '@gdk_pixbuf@/lib/libgdk_pixbuf-2.0.so.0',
|
||||
+}
|
||||
|
||||
-def dlopen(ffi, *names):
|
||||
+def dlopen(ffi, name, *names):
|
||||
"""Try various names for the same library, for different platforms."""
|
||||
- for name in names:
|
||||
- for lib_name in [name, 'lib' + name]:
|
||||
- try:
|
||||
- path = ctypes.util.find_library(lib_name)
|
||||
- if path:
|
||||
- lib = ffi.dlopen(path)
|
||||
- if lib:
|
||||
- return lib
|
||||
- except OSError:
|
||||
- pass
|
||||
- raise OSError("dlopen() failed to load a library: %s" % ' / '.join(names))
|
||||
+ path = _LIBS.get(name, None)
|
||||
+ if path:
|
||||
+ lib = ffi.dlopen(path)
|
||||
+ if lib:
|
||||
+ return lib
|
||||
+ raise OSError("dlopen() failed to load a library: %s as %s" % (name, path))
|
||||
|
||||
|
||||
cairo = dlopen(ffi, 'cairo', 'cairo-2')
|
||||
@ -1,35 +0,0 @@
|
||||
{
|
||||
# Python package expression
|
||||
python,
|
||||
# Name of package (e.g. numpy or scipy)
|
||||
pkgName,
|
||||
# OpenBLAS math library
|
||||
openblas
|
||||
}:
|
||||
|
||||
{
|
||||
# Re-export openblas here so that it can be sure that the same one will be used
|
||||
# in the propagatedBuildInputs.
|
||||
inherit openblas;
|
||||
|
||||
# First "install" the package, then import what was installed, and call the
|
||||
# .test() function, which will run the test suite.
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
pushd dist
|
||||
${python.interpreter} -c 'import ${pkgName}; ${pkgName}.test("fast", verbose=10)'
|
||||
popd
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
# Creates a site.cfg telling the setup script where to find depended-on
|
||||
# math libraries.
|
||||
preBuild = ''
|
||||
echo "Creating site.cfg file..."
|
||||
cat << EOF > site.cfg
|
||||
[openblas]
|
||||
include_dirs = ${openblas}/include
|
||||
library_dirs = ${openblas}/lib
|
||||
EOF
|
||||
'';
|
||||
}
|
||||
51
pkgs/development/python-modules/numpy.nix
Normal file
51
pkgs/development/python-modules/numpy.nix
Normal file
@ -0,0 +1,51 @@
|
||||
{lib, python, buildPythonPackage, isPyPy, gfortran, nose, blas}:
|
||||
|
||||
args:
|
||||
|
||||
let
|
||||
inherit (args) version;
|
||||
in buildPythonPackage (args // rec {
|
||||
|
||||
name = "numpy-${version}";
|
||||
|
||||
disabled = isPyPy;
|
||||
buildInputs = args.buildInputs or [ gfortran nose ];
|
||||
propagatedBuildInputs = args.propagatedBuildInputs or [ passthru.blas ];
|
||||
|
||||
preConfigure = ''
|
||||
sed -i 's/-faltivec//' numpy/distutils/system_info.py
|
||||
'';
|
||||
|
||||
preBuild = ''
|
||||
echo "Creating site.cfg file..."
|
||||
cat << EOF > site.cfg
|
||||
[openblas]
|
||||
include_dirs = ${passthru.blas}/include
|
||||
library_dirs = ${passthru.blas}/lib
|
||||
EOF
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
pushd dist
|
||||
${python.interpreter} -c 'import numpy; numpy.test("fast", verbose=10)'
|
||||
popd
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
blas = blas;
|
||||
};
|
||||
|
||||
# The large file support test is disabled because it takes forever
|
||||
# and can cause the machine to run out of disk space when run.
|
||||
prePatch = ''
|
||||
sed -i 's/test_large_file_support/donttest/' numpy/lib/tests/test_format.py
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Scientific tools for Python";
|
||||
homepage = "http://numpy.scipy.org/";
|
||||
maintainers = with lib.maintainers; [ fridh ];
|
||||
} // (args.meta or {});
|
||||
})
|
||||
47
pkgs/development/python-modules/scipy.nix
Normal file
47
pkgs/development/python-modules/scipy.nix
Normal file
@ -0,0 +1,47 @@
|
||||
{lib, python, buildPythonPackage, isPyPy, gfortran, nose}:
|
||||
|
||||
args:
|
||||
|
||||
let
|
||||
inherit (args) version;
|
||||
inherit (args) numpy;
|
||||
in buildPythonPackage (args // rec {
|
||||
|
||||
name = "scipy-${version}";
|
||||
|
||||
buildInputs = (args.buildInputs or [ gfortran nose ]);
|
||||
propagatedBuildInputs = (args.propagatedBuildInputs or [ passthru.blas numpy]);
|
||||
|
||||
preConfigure = ''
|
||||
sed -i '0,/from numpy.distutils.core/s//import setuptools;from numpy.distutils.core/' setup.py
|
||||
'';
|
||||
|
||||
preBuild = ''
|
||||
echo "Creating site.cfg file..."
|
||||
cat << EOF > site.cfg
|
||||
[openblas]
|
||||
include_dirs = ${passthru.blas}/include
|
||||
library_dirs = ${passthru.blas}/lib
|
||||
EOF
|
||||
'';
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
pushd dist
|
||||
${python.interpreter} -c 'import scipy; scipy.test("fast", verbose=10)'
|
||||
popd
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
passthru = {
|
||||
blas = numpy.blas;
|
||||
};
|
||||
|
||||
setupPyBuildFlags = [ "--fcompiler='gnu95'" ];
|
||||
|
||||
meta = {
|
||||
description = "SciPy (pronounced 'Sigh Pie') is open-source software for mathematics, science, and engineering. ";
|
||||
homepage = http://www.scipy.org/;
|
||||
maintainers = with lib.maintainers; [ fridh ];
|
||||
} // (args.meta or {});
|
||||
})
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user