Merge master into staging

This commit is contained in:
Vladimír Čunát 2015-10-23 01:57:14 +02:00
commit 4917a4f8b3
247 changed files with 16829 additions and 1271 deletions

View File

@ -152,7 +152,7 @@
kkallio = "Karn Kallio <tierpluspluslists@gmail.com>"; kkallio = "Karn Kallio <tierpluspluslists@gmail.com>";
koral = "Koral <koral@mailoo.org>"; koral = "Koral <koral@mailoo.org>";
kovirobi = "Kovacsics Robert <kovirobi@gmail.com>"; kovirobi = "Kovacsics Robert <kovirobi@gmail.com>";
kragniz = "Louis Taylor <kragniz@gmail.com>"; kragniz = "Louis Taylor <louis@kragniz.eu>";
ktosiek = "Tomasz Kontusz <tomasz.kontusz@gmail.com>"; ktosiek = "Tomasz Kontusz <tomasz.kontusz@gmail.com>";
lassulus = "Lassulus <lassulus@gmail.com>"; lassulus = "Lassulus <lassulus@gmail.com>";
layus = "Guillaume Maudoux <layus.on@gmail.com>"; layus = "Guillaume Maudoux <layus.on@gmail.com>";
@ -216,6 +216,7 @@
phreedom = "Evgeny Egorochkin <phreedom@yandex.ru>"; phreedom = "Evgeny Egorochkin <phreedom@yandex.ru>";
pierron = "Nicolas B. Pierron <nixos@nbp.name>"; pierron = "Nicolas B. Pierron <nixos@nbp.name>";
piotr = "Piotr Pietraszkiewicz <ppietrasa@gmail.com>"; piotr = "Piotr Pietraszkiewicz <ppietrasa@gmail.com>";
pjbarnoy = "Perry Barnoy <pjbarnoy@gmail.com>";
pjones = "Peter Jones <pjones@devalot.com>"; pjones = "Peter Jones <pjones@devalot.com>";
pkmx = "Chih-Mao Chen <pkmx.tw@gmail.com>"; pkmx = "Chih-Mao Chen <pkmx.tw@gmail.com>";
plcplc = "Philip Lykke Carlsen <plcplc@gmail.com>"; plcplc = "Philip Lykke Carlsen <plcplc@gmail.com>";

View File

@ -233,8 +233,8 @@ foreach my $path (glob "/sys/bus/usb/devices/*") {
} }
# Add the modules for all block devices. # Add the modules for all block and MMC devices.
foreach my $path (glob "/sys/class/block/*") { foreach my $path (glob "/sys/class/{block,mmc_host}/*") {
my $module; my $module;
if (-e "$path/device/driver/module") { if (-e "$path/device/driver/module") {
$module = basename `readlink -f $path/device/driver/module`; $module = basename `readlink -f $path/device/driver/module`;

View File

@ -90,6 +90,7 @@ in
promptInit = mkOption { promptInit = mkOption {
default = '' default = ''
if test "$TERM" != "dumb"; then
# Provide a nice prompt. # Provide a nice prompt.
PROMPT_COLOR="1;31m" PROMPT_COLOR="1;31m"
let $UID && PROMPT_COLOR="1;32m" let $UID && PROMPT_COLOR="1;32m"
@ -97,6 +98,7 @@ in
if test "$TERM" = "xterm"; then if test "$TERM" = "xterm"; then
PS1="\[\033]2;\h:\u:\w\007\]$PS1" PS1="\[\033]2;\h:\u:\w\007\]$PS1"
fi fi
fi
''; '';
description = '' description = ''
Shell script code used to initialise the bash prompt. Shell script code used to initialise the bash prompt.

View File

@ -91,7 +91,7 @@ in
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
after = [ "network.target" ]; after = [ "network.target" ];
serviceConfig = { serviceConfig = {
ExecStart = "${pkgs.nodePackages.parsoid}/lib/node_modules/parsoid/api/server.js -c ${confFile} -n ${toString cfg.workers}"; ExecStart = "${pkgs.nodePackages_0_10.parsoid}/lib/node_modules/parsoid/api/server.js -c ${confFile} -n ${toString cfg.workers}";
}; };
}; };

View File

@ -201,6 +201,7 @@ in
for d in '${varlibdir}' '${spooldir}' '${logdir}'; do for d in '${varlibdir}' '${spooldir}' '${logdir}'; do
# TODO: Make exceptions for /var directories that likely should be updated # TODO: Make exceptions for /var directories that likely should be updated
if [ ! -e "$d" ]; then if [ ! -e "$d" ]; then
mkdir -p "$d"
cp --recursive ${pkgs.asterisk}/"$d" "$d" cp --recursive ${pkgs.asterisk}/"$d" "$d"
chown --recursive ${asteriskUser} "$d" chown --recursive ${asteriskUser} "$d"
find "$d" -type d | xargs chmod 0755 find "$d" -type d | xargs chmod 0755

View File

@ -15,7 +15,7 @@ let
# "git describe" when _not_ on an annotated tag(!): MAJOR.MINOR-REV-HASH. # "git describe" when _not_ on an annotated tag(!): MAJOR.MINOR-REV-HASH.
# Version to build. # Version to build.
tag = "4.2"; tag = "4.4";
in in
@ -25,8 +25,8 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Ardour"; owner = "Ardour";
repo = "ardour"; repo = "ardour";
rev = "05e3a00b7e3a52a838bc5ec9ee7b3b9e6a271feb"; rev = "b00d75adf63db155ef2873bd9d259dc8ca256be6";
sha256 = "1j8zw0bvh16qwyy8qrqynpak9nghl9j3qhjjcdl7wh9raafjqc00"; sha256 = "1gnrcnq2ksnh7fsa301v1c4p5dqrbqpjylf02rg3za3ab58wxi7l";
}; };
buildInputs = buildInputs =
@ -37,6 +37,9 @@ stdenv.mkDerivation rec {
makeWrapper pango perl pkgconfig python rubberband serd sord-svn sratom suil taglib vampSDK makeWrapper pango perl pkgconfig python rubberband serd sord-svn sratom suil taglib vampSDK
]; ];
# ardour's wscript has a "tarball" target but that required the git revision
# be available. Since this is an unzipped tarball fetched from github we
# have to do that ourself.
patchPhase = '' patchPhase = ''
printf '#include "libs/ardour/ardour/revision.h"\nnamespace ARDOUR { const char* revision = \"${tag}-${builtins.substring 0 8 src.rev}\"; }\n' > libs/ardour/revision.cc printf '#include "libs/ardour/ardour/revision.h"\nnamespace ARDOUR { const char* revision = \"${tag}-${builtins.substring 0 8 src.rev}\"; }\n' > libs/ardour/revision.cc
sed 's|/usr/include/libintl.h|${glibc}/include/libintl.h|' -i wscript sed 's|/usr/include/libintl.h|${glibc}/include/libintl.h|' -i wscript
@ -80,6 +83,6 @@ stdenv.mkDerivation rec {
homepage = http://ardour.org/; homepage = http://ardour.org/;
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = [ maintainers.goibhniu ]; maintainers = [ maintainers.goibhniu maintainers.fps ];
}; };
} }

View File

@ -10,11 +10,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "kid3-${version}"; name = "kid3-${version}";
version = "3.1.2"; version = "3.3.0";
src = fetchurl { src = fetchurl {
url = "http://downloads.sourceforge.net/project/kid3/kid3/${version}/${name}.tar.gz"; url = "http://downloads.sourceforge.net/project/kid3/kid3/${version}/${name}.tar.gz";
sha256 = "0ik2bxg2im7nwcgi85g2dj148n80mfhks20rsxnzazl7afk9fl08"; sha256 = "12sa54mg1b3wkagmh5yi20ski8km9d199lk0a1yfxy0ffjfld7js";
}; };
buildInputs = with stdenv.lib; buildInputs = with stdenv.lib;

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, cmake, pkgconfig { stdenv, fetchzip, cmake, pkgconfig
, alsaLib, freetype, libjack2, lame, libogg, libpulseaudio, libsndfile, libvorbis , alsaLib, freetype, libjack2, lame, libogg, libpulseaudio, libsndfile, libvorbis
, portaudio, qtbase, qtdeclarative, qtenginio, qtscript, qtsvg, qttools , portaudio, qtbase, qtdeclarative, qtenginio, qtscript, qtsvg, qttools
, qtwebkit, qtxmlpatterns , qtwebkit, qtxmlpatterns
@ -6,11 +6,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "musescore-${version}"; name = "musescore-${version}";
version = "2.0.1"; version = "2.0.2";
src = fetchurl { src = fetchzip {
url = "https://github.com/musescore/MuseScore/archive/v${version}.tar.gz"; url = "https://github.com/musescore/MuseScore/archive/v${version}.tar.gz";
sha256 = "0n4xk35jggdq2dcizqjq1kdpclih4scpl93ymmxahvfa1vvwn5iw"; sha256 = "12a83v4i830gj76z5744034y1vvwzgy27mjbjp508yh9bd328yqw";
}; };
makeFlags = [ makeFlags = [
@ -33,8 +33,14 @@ stdenv.mkDerivation rec {
make lrelease make lrelease
''; '';
postBuild = ''
make manpages
'';
nativeBuildInputs = [ cmake pkgconfig ]; nativeBuildInputs = [ cmake pkgconfig ];
enableParallelBuilding = true;
buildInputs = [ buildInputs = [
alsaLib libjack2 freetype lame libogg libpulseaudio libsndfile libvorbis alsaLib libjack2 freetype lame libogg libpulseaudio libsndfile libvorbis
portaudio qtbase qtdeclarative qtenginio qtscript qtsvg qttools portaudio qtbase qtdeclarative qtenginio qtscript qtsvg qttools

View File

@ -1,18 +1,21 @@
{ stdenv, fetchurl, boost, libX11, mesa, liblo, libjack2, ladspaH, lv2, pkgconfig, rubberband, libsndfile }: { stdenv, fetchgit , boost, libX11, mesa, liblo, libjack2, ladspaH, lv2, pkgconfig, rubberband, libsndfile }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "zam-plugins-${version}"; name = "zam-plugins-${version}";
version = "3.5"; version = "3.6";
src = fetchurl { src = fetchgit {
url = "https://github.com/zamaudio/zam-plugins/archive/${version}.tar.gz"; url = "https://github.com/zamaudio/zam-plugins.git";
sha256 = "0icdrs4vaaj8gqi76jkkx5yk9h3agipa11cyb5h52y814q6mx6vm"; deepClone = true;
rev = "91fe56931a3e57b80f18c740d2dde6b44f962aee";
sha256 = "17slpywjs04xbcylyqjg6kqbpqwqbigf843y437yfvj1ar6ir1jp";
}; };
buildInputs = [ boost libX11 mesa liblo libjack2 ladspaH lv2 pkgconfig rubberband libsndfile ]; buildInputs = [ boost libX11 mesa liblo libjack2 ladspaH lv2 pkgconfig rubberband libsndfile ];
patchPhase = '' patchPhase = ''
patchShebangs ./libs/generate-ttl.sh patchShebangs ./dpf/utils/generate-ttl.sh
substituteInPlace Makefile --replace "ZaMaximX2" "ZaMaximX2 ZamPiano ZamChild670"
''; '';
makeFlags = [ makeFlags = [

View File

@ -176,8 +176,8 @@ in {
nixosSlim = buildTheme { nixosSlim = buildTheme {
fullName = "nixos-slim"; fullName = "nixos-slim";
src = fetchurl { src = fetchurl {
url = "https://github.com/jagajaga/nixos-slim-theme/archive/1.1.tar.gz"; url = "https://github.com/jagajaga/nixos-slim-theme/archive/2.0.tar.gz";
sha256 = "66c3020a6716130a20c3898567339b990fbd7888a3b7bbcb688f6544d1c05c31"; sha256 = "0lldizhigx7bjhxkipii87y432hlf5wdvamnfxrryf9z7zkfypc8";
}; };
}; };
} }

View File

@ -171,12 +171,12 @@ rec {
checkstyle = buildEclipseUpdateSite rec { checkstyle = buildEclipseUpdateSite rec {
name = "checkstyle-${version}"; name = "checkstyle-${version}";
version = "6.11.0.201510052139"; version = "6.11.1.201510102004";
src = fetchzip { src = fetchzip {
stripRoot = false; stripRoot = false;
url = "mirror://sourceforge/project/eclipse-cs/Eclipse%20Checkstyle%20Plug-in/6.11.0/net.sf.eclipsecs-updatesite_${version}-bin.zip"; url = "mirror://sourceforge/project/eclipse-cs/Eclipse%20Checkstyle%20Plug-in/6.11.1/net.sf.eclipsecs-updatesite_${version}-bin.zip";
sha256 = "166nasgv3zsys7rlafvfnldfb6hiwiq3vil3papd59prwvky75fz"; sha256 = "0l9nfx7a3qdx1pvjgc6ck4rxh7yrvqsskr190yrxxwmpnyj9cjs4";
}; };
meta = with stdenv.lib; { meta = with stdenv.lib; {
@ -335,16 +335,16 @@ rec {
testng = buildEclipsePlugin rec { testng = buildEclipsePlugin rec {
name = "testng-${version}"; name = "testng-${version}";
version = "6.9.7.201510070420"; version = "6.9.8.201510130443";
srcFeature = fetchurl { srcFeature = fetchurl {
url = "http://beust.com/eclipse/features/org.testng.eclipse_${version}.jar"; url = "http://beust.com/eclipse/features/org.testng.eclipse_${version}.jar";
sha256 = "185m6zcz1havhl94qgwms9szcs7vhrrq8rckbrb1vz02208yyhpn"; sha256 = "0g0dva1zpqk0rz0vgr025g2cfc47snr857fsqcrssmp9qmy8x0i0";
}; };
srcPlugin = fetchurl { srcPlugin = fetchurl {
url = "http://beust.com/eclipse/plugins/org.testng.eclipse_${version}.jar"; url = "http://beust.com/eclipse/plugins/org.testng.eclipse_${version}.jar";
sha256 = "1rw678cd9nm623dvaddncadaclif62zcb15jl7ryzcmck2y380l5"; sha256 = "16mnvqkakixqp3bcnyx6x2iwkhnv3k4q561c97kssz98xsrr8f54";
}; };
meta = with stdenv.lib; { meta = with stdenv.lib; {

View File

@ -93,6 +93,7 @@ let
preConfigure = stdenv.lib.optionalString stdenv.isDarwin '' preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
export DYLD_LIBRARY_PATH=${jemalloc}/lib export DYLD_LIBRARY_PATH=${jemalloc}/lib
substituteInPlace src/nvim/CMakeLists.txt --replace " util" ""
''; '';
postInstall = stdenv.lib.optionalString stdenv.isDarwin '' postInstall = stdenv.lib.optionalString stdenv.isDarwin ''

View File

@ -3,7 +3,12 @@
args@{pkgs, source ? "default", fetchurl, fetchhg, stdenv, ncurses, pkgconfig, gettext args@{pkgs, source ? "default", fetchurl, fetchhg, stdenv, ncurses, pkgconfig, gettext
, composableDerivation, lib, config, glib, gtk, python, perl, tcl, ruby , composableDerivation, lib, config, glib, gtk, python, perl, tcl, ruby
, libX11, libXext, libSM, libXpm, libXt, libXaw, libXau, libXmu , libX11, libXext, libSM, libXpm, libXt, libXaw, libXau, libXmu
, libICE, ... }: with args; , libICE
# apple frameworks
, CoreServices, CoreData, Cocoa, Foundation, libobjc, cf-private
, ... }: with args;
let inherit (args.composableDerivation) composableDerivation edf; let inherit (args.composableDerivation) composableDerivation edf;
@ -88,7 +93,14 @@ composableDerivation {
''; '';
}; };
} }
// edf { name = "darwin"; } #Disable Darwin (Mac OS X) support. // edf {
name = "darwin";
enable = {
nativeBuildInputs = [ CoreServices CoreData Cocoa Foundation libobjc cf-private ];
NIX_LDFLAGS = stdenv.lib.optional stdenv.isDarwin
"/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation";
};
} #Disable Darwin (Mac OS X) support.
// edf { name = "xsmp"; } #Disable XSMP session management // edf { name = "xsmp"; } #Disable XSMP session management
// edf { name = "xsmp_interact"; } #Disable XSMP interaction // edf { name = "xsmp_interact"; } #Disable XSMP interaction
// edf { name = "mzscheme"; feat = "mzschemeinterp";} #Include MzScheme interpreter. // edf { name = "mzscheme"; feat = "mzschemeinterp";} #Include MzScheme interpreter.

View File

@ -1,12 +1,12 @@
{ stdenv, fetchurl, makeWrapper, xulrunner }: { stdenv, fetchurl, makeWrapper, xulrunner }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "2.0.13"; version = "2.0.14";
name = "pencil-${version}"; name = "pencil-${version}";
src = fetchurl { src = fetchurl {
url = "https://github.com/prikhi/pencil/releases/download/v${version}/Pencil-${version}-linux-pkg.tar.gz"; url = "https://github.com/prikhi/pencil/releases/download/v${version}/Pencil-${version}-linux-pkg.tar.gz";
sha256 = "150jsaq27n01l0vf10jiyrlfm0canqhphdxi42di96b9zsfkphpk"; sha256 = "59f46db863e6d95ee6987e600d658ad4b58b03b0744c5c6d17ce04f5ae92d260";
}; };

View File

@ -6,11 +6,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "calibre-${version}"; name = "calibre-${version}";
version = "2.40.0"; version = "2.41.0";
src = fetchurl { src = fetchurl {
url = "https://github.com/kovidgoyal/calibre/releases/download/v${version}/${name}.tar.xz"; url = "https://github.com/kovidgoyal/calibre/releases/download/v${version}/${name}.tar.xz";
sha256 = "1xzf910w3c15vajnlra32xzi0gwb4z7a9m9w5nfj0by2wss3fv7n"; sha256 = "069fkcsx7kaazs7f095nkz4jw9jrm0k9zq16ayx41lxjbd1r97ik";
}; };
inherit python; inherit python;

View File

@ -2,11 +2,11 @@
buildPythonPackage rec { buildPythonPackage rec {
name = "electrum-${version}"; name = "electrum-${version}";
version = "2.4.3"; version = "2.5.1";
src = fetchurl { src = fetchurl {
url = "https://download.electrum.org/Electrum-${version}.tar.gz"; url = "https://download.electrum.org/Electrum-${version}.tar.gz";
sha256 = "00z02rdlhasryccjsw1j7563xl76i6x40ah1lnn9asad1gp6520f"; sha256 = "0wjqf2ifw1ww6iyj0h0i63zjmy0yhmzl91sgc5hc4j2x5bd2c3am";
}; };
propagatedBuildInputs = with pythonPackages; [ propagatedBuildInputs = with pythonPackages; [

View File

@ -1,12 +1,13 @@
{ stdenv, fetchurl, qt4, muparser, which, boost, pkgconfig }: { stdenv, fetchurl, qt4, muparser, which, boost, pkgconfig }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "librecad-2.0.7"; version = "2.0.8";
name = "librecad-${version}";
src = fetchurl { src = fetchurl {
url = https://github.com/LibreCAD/LibreCAD/tarball/2.0.7; url = "https://github.com/LibreCAD/LibreCAD/tarball/${version}";
name = "librecad-2.0.7.tar.gz"; name = name + ".tar.gz";
sha256 = "0r6d7fk9jl8368rbxzk9rwv0mciw28hlv77z29jf36amc42n6z4d"; sha256 = "110vn1rvzidg8k6ifz1zws2wsn4cd05xl5ha0hbff2ln7izy84zc";
}; };
patchPhase = '' patchPhase = ''

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, fetchpatch, perlSupport, libX11, libXt, libXft, ncurses, perl, { stdenv, fetchurl, perlSupport, libX11, libXt, libXft, ncurses, perl,
fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf, fontconfig, freetype, pkgconfig, libXrender, gdkPixbufSupport, gdk_pixbuf,
unicode3Support }: unicode3Support }:
@ -28,10 +28,6 @@ stdenv.mkDerivation (rec {
patches = [ patches = [
./rxvt-unicode-9.06-font-width.patch ./rxvt-unicode-9.06-font-width.patch
./rxvt-unicode-256-color-resources.patch ./rxvt-unicode-256-color-resources.patch
(fetchpatch {
url = "https://raw.githubusercontent.com/mina86/urxvt-tabbedex/ad4f54c8b8d3a01fc17975fd3fd14aa674c07d2b/rxvt-unicode-scroll-bug-fix.patch";
sha256 = "1ild0r6y7jb800yiss5pgd4k60s7l9njv3nn3x280yvg1lx6ihpg";
})
] ]
++ stdenv.lib.optional stdenv.isDarwin ./rxvt-unicode-makefile-phony.patch; ++ stdenv.lib.optional stdenv.isDarwin ./rxvt-unicode-makefile-phony.patch;

View File

@ -2,10 +2,10 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "vue-${version}"; name = "vue-${version}";
version = "3.2.2"; version = "3.3.0";
src = fetchurl { src = fetchurl {
url = "releases.atech.tufts.edu/jenkins/job/VUE/64/deployedArtifacts/download/artifact.2"; url = "releases.atech.tufts.edu/jenkins/job/VUE/116/deployedArtifacts/download/artifact.1";
sha256 = "0sb1kgan8fvph2cqfxk3906cwx5wy83zni2vlz4zzi6yg4zvfxld"; sha256 = "0yfzr80pw632lkayg4qfmwzrqk02y30yz8br7isyhmgkswyp5rnx";
}; };
phases = "installPhase"; phases = "installPhase";

View File

@ -174,6 +174,7 @@ let
} // optionalAttrs proprietaryCodecs { } // optionalAttrs proprietaryCodecs {
# enable support for the H.264 codec # enable support for the H.264 codec
proprietary_codecs = true; proprietary_codecs = true;
enable_hangout_services_extension = true;
ffmpeg_branding = "Chrome"; ffmpeg_branding = "Chrome";
} // optionalAttrs (stdenv.system == "x86_64-linux") { } // optionalAttrs (stdenv.system == "x86_64-linux") {
target_arch = "x64"; target_arch = "x64";

View File

@ -7,15 +7,15 @@
sha256bin64 = "1ycdp37ikdc9w4hp9qgpzjp47zh37g01ax8x4ack202vrv0dxhsh"; sha256bin64 = "1ycdp37ikdc9w4hp9qgpzjp47zh37g01ax8x4ack202vrv0dxhsh";
}; };
beta = { beta = {
version = "46.0.2490.52"; version = "46.0.2490.64";
sha256 = "00sgb1pnp3fcijwdwpngnnddmn5nrbljsqz7f6dlnd63qfc91xjw"; sha256 = "1k2zir4rbs7hwdasbjpwyjr4ibis2vm6lx45bfm2r2f469mf3y2g";
sha256bin32 = "10jgcxc2zwffg8lxi55zl9apql6pyxh1g1n3z46gcb6j6am4y5m5"; sha256bin32 = "0j1xncws0r5z2rvvjsi0gxxmnslfcbiasaxr6bjhbxnzjv7chrd4";
sha256bin64 = "0i839ir4qcjl9llpqnwy793hvbdfh898x1izc5k93h7nm6i34ry9"; sha256bin64 = "1m8vv3qh79an3719afz7n2ijqanf4cyxz2q4bzm512x52z5zipl7";
}; };
stable = { stable = {
version = "45.0.2454.101"; version = "46.0.2490.71";
sha256 = "1yw5xlgy5hd3iwcyf0sillq5p367fcpvp4mizpmv52cwmv52ss0v"; sha256 = "1dnwhwvn39x8lm1jszjn8y7vy478zy75gm696rr2dvk4kqj1hjyd";
sha256bin32 = "1ll8lmkmx7v74naz1vcnrwk5ighh0skfcb66jkq4kgxrb5fjgwm5"; sha256bin32 = "1v1acg32dzmkydzy7sh6xjbzqar052iw8x8hql2yjz5kxznir4sf";
sha256bin64 = "1cwbd3n77dnbfnrfr8g0qng9xkgvz6y7mx489gpx1wsamgi42bzj"; sha256bin64 = "15ladhxiym760mid5zq09vp73irzwlp31br9yqslzgv4460ma3np";
}; };
} }

View File

@ -4,185 +4,185 @@
# ruby generate_source.rb > source.nix # ruby generate_source.rb > source.nix
{ {
version = "41.0.1"; version = "41.0.2";
sources = [ sources = [
{ locale = "ach"; arch = "linux-i686"; sha1 = "cfb24e0fd6e10febf2381101d4a8f3de1516a732"; } { locale = "ach"; arch = "linux-i686"; sha1 = "f28f6b40891d3e2626c752e94cb671bcd16cf09c"; }
{ locale = "ach"; arch = "linux-x86_64"; sha1 = "642d44d0fe13be4eaf4d1b495dfc7b285f7c2de7"; } { locale = "ach"; arch = "linux-x86_64"; sha1 = "b09ff7642423f0c94cd0acea890618dbb986b30a"; }
{ locale = "af"; arch = "linux-i686"; sha1 = "b4e5ce516dbc5d4157bd1c85b23b5cc233bbf8d5"; } { locale = "af"; arch = "linux-i686"; sha1 = "98f6805e3fad98b1ff0ae260318566b279748927"; }
{ locale = "af"; arch = "linux-x86_64"; sha1 = "40f9b3a3ac3089f6bbf9c42a3259a484b49a659a"; } { locale = "af"; arch = "linux-x86_64"; sha1 = "1297fe1d68644b30d72f74010b4e93cb705ce084"; }
{ locale = "an"; arch = "linux-i686"; sha1 = "0bfa3cd6867316ca10ebe57ab2cebd03a59b096c"; } { locale = "an"; arch = "linux-i686"; sha1 = "0b9bf558713e7172aa1d6082b2ee706772dd7f50"; }
{ locale = "an"; arch = "linux-x86_64"; sha1 = "69369093f488223decdb77f2d12676be4aeb4d95"; } { locale = "an"; arch = "linux-x86_64"; sha1 = "e1a041106bb1e823359cc8aba5d6774e5622c065"; }
{ locale = "ar"; arch = "linux-i686"; sha1 = "3a091005a265c6b06a77416223caa45a51d36056"; } { locale = "ar"; arch = "linux-i686"; sha1 = "7dc31eb10e280c847b003167cba3566c7566eb8f"; }
{ locale = "ar"; arch = "linux-x86_64"; sha1 = "0f9c79ae4aa4498bc9f8a3e372b26b0b000a0db9"; } { locale = "ar"; arch = "linux-x86_64"; sha1 = "2ac37f86880230b589bede4326f3a9fc51dc04a6"; }
{ locale = "as"; arch = "linux-i686"; sha1 = "cf996943809573aca05dc88ed4d843afda11710f"; } { locale = "as"; arch = "linux-i686"; sha1 = "7157ef7c0cddaf2b5203134dd1a9c59257ba4e7b"; }
{ locale = "as"; arch = "linux-x86_64"; sha1 = "609860ebd75ea9731912b4fcbb343fa027ebbb77"; } { locale = "as"; arch = "linux-x86_64"; sha1 = "2f8f4e33a321dc1a5f2ccf6c12ab564ef47c1351"; }
{ locale = "ast"; arch = "linux-i686"; sha1 = "5adbd6c9194f8f214c94b587a41c5399116316d4"; } { locale = "ast"; arch = "linux-i686"; sha1 = "517d6cea54258e6f37534b7c59b00633e50264ba"; }
{ locale = "ast"; arch = "linux-x86_64"; sha1 = "feaeae77f9578a452cb98893701f14047d65a5d3"; } { locale = "ast"; arch = "linux-x86_64"; sha1 = "de74737e383ef9eb33ba9894bead1249d5bdfa17"; }
{ locale = "az"; arch = "linux-i686"; sha1 = "8718585cb6fb8b7823a572ddc21f910877287133"; } { locale = "az"; arch = "linux-i686"; sha1 = "2cb8468902daf4237ec3a307d89523db08256c17"; }
{ locale = "az"; arch = "linux-x86_64"; sha1 = "0834d8d8a29f805b435c2d6a29403c9180471837"; } { locale = "az"; arch = "linux-x86_64"; sha1 = "26556ef189be09392a6dc2f057ab2eb78f1b86d8"; }
{ locale = "be"; arch = "linux-i686"; sha1 = "abb5002f7275cb5b65942a735864783bf32c4d9e"; } { locale = "be"; arch = "linux-i686"; sha1 = "c27213ffcd4718d5669dfca004ec3517264d1181"; }
{ locale = "be"; arch = "linux-x86_64"; sha1 = "bc0ef337ec080b46db30728a425695d78a908d46"; } { locale = "be"; arch = "linux-x86_64"; sha1 = "5c50b0b407268161ebaa1a6a1cdc67b4c66ac387"; }
{ locale = "bg"; arch = "linux-i686"; sha1 = "7bcee63546e75aa94ccd9fd65db18ebf8360e5ba"; } { locale = "bg"; arch = "linux-i686"; sha1 = "6d8af51f1278731da288ef3638687a31fbc77335"; }
{ locale = "bg"; arch = "linux-x86_64"; sha1 = "8c9c23313710f7467bc34d2ea462dd8e9df6fcde"; } { locale = "bg"; arch = "linux-x86_64"; sha1 = "cd697af203a4c82afe06271059ba03ff01d81606"; }
{ locale = "bn-BD"; arch = "linux-i686"; sha1 = "fa80f7049f926205878e1f9e99d2abba876ea9d9"; } { locale = "bn-BD"; arch = "linux-i686"; sha1 = "1b24d5641b50a2f22e72429d65a2c3bb266fb534"; }
{ locale = "bn-BD"; arch = "linux-x86_64"; sha1 = "add645cc1b73affbc35c265ec2f82a9d97abddf6"; } { locale = "bn-BD"; arch = "linux-x86_64"; sha1 = "e470a6bc6b82c3145bc074b0a8f3b9bfff9bb219"; }
{ locale = "bn-IN"; arch = "linux-i686"; sha1 = "a391b6305ecf256a5be3e7b29427ff1979b90a9e"; } { locale = "bn-IN"; arch = "linux-i686"; sha1 = "0b2fe41d3ed5ccd9ceb941bdf72c27919258cd92"; }
{ locale = "bn-IN"; arch = "linux-x86_64"; sha1 = "77d637809f26bf3214fc93d39547863d56b9949d"; } { locale = "bn-IN"; arch = "linux-x86_64"; sha1 = "9c0253add017c3747fc59b89561baa1e348207f6"; }
{ locale = "br"; arch = "linux-i686"; sha1 = "a7e0fc1a0b340232585c2b4630834e67b2ee565a"; } { locale = "br"; arch = "linux-i686"; sha1 = "ed0292dda6fc1a42d636a10bb0c45f8918e9dc18"; }
{ locale = "br"; arch = "linux-x86_64"; sha1 = "80f61d890df9c5c126846ee293a0c1295f3b52bc"; } { locale = "br"; arch = "linux-x86_64"; sha1 = "6f3dfed52c47f940de86a42598f7df81ff33f8ca"; }
{ locale = "bs"; arch = "linux-i686"; sha1 = "f007e6bac7ae796822496b4b06fed7f9112032ad"; } { locale = "bs"; arch = "linux-i686"; sha1 = "9c78bd5b4f5be28557cb0576a0faa43b674ce481"; }
{ locale = "bs"; arch = "linux-x86_64"; sha1 = "7abfb01029faa86d2245a273381ef8e5453dc89a"; } { locale = "bs"; arch = "linux-x86_64"; sha1 = "a2d41fb95f6c8acf6cc5b1bfd0dec5bce661a2e9"; }
{ locale = "ca"; arch = "linux-i686"; sha1 = "3bbdf70ed21803dacb4cf000055f27d8f11bf6a2"; } { locale = "ca"; arch = "linux-i686"; sha1 = "9e0149621e049af657f1533a2ceebeb303eea9ff"; }
{ locale = "ca"; arch = "linux-x86_64"; sha1 = "de2696a5c031b05479d12319d57dd44dd644f1ff"; } { locale = "ca"; arch = "linux-x86_64"; sha1 = "686bf22667c5c621e2182626edc21cb549253f8e"; }
{ locale = "cs"; arch = "linux-i686"; sha1 = "0d678464f64f2ba1ff8e924336992faf9f50659c"; } { locale = "cs"; arch = "linux-i686"; sha1 = "38d487b5c1193608a3c4f9e83978c34f5c70e668"; }
{ locale = "cs"; arch = "linux-x86_64"; sha1 = "86d68fde6d6255407b8b0f46845416141745b805"; } { locale = "cs"; arch = "linux-x86_64"; sha1 = "2031026f3989429b87eaba9ceef96b7b59921725"; }
{ locale = "cy"; arch = "linux-i686"; sha1 = "eb0270f0315d31a0c8f9d2919eb4408996b4cdeb"; } { locale = "cy"; arch = "linux-i686"; sha1 = "27f44852ca65bb2dd61375d7d52eb4a7b30d5cbe"; }
{ locale = "cy"; arch = "linux-x86_64"; sha1 = "004c5d1cfbcf7535765bc1cb3d8a8ea2d72386e5"; } { locale = "cy"; arch = "linux-x86_64"; sha1 = "148da60b7247c602082c99ae451e62261602d6c4"; }
{ locale = "da"; arch = "linux-i686"; sha1 = "e333b6e553bc208c50c71d89d41ce0075e72bed9"; } { locale = "da"; arch = "linux-i686"; sha1 = "4bec4af409742393fc91ff74689ede4dc872b0c2"; }
{ locale = "da"; arch = "linux-x86_64"; sha1 = "dacd29f1fb10cfab134d302ca50092d50ebf8936"; } { locale = "da"; arch = "linux-x86_64"; sha1 = "e7a918306d7195a97933761699b74920b9d6bd2e"; }
{ locale = "de"; arch = "linux-i686"; sha1 = "349d731fae24d6717d35e5b945add7c992a587e2"; } { locale = "de"; arch = "linux-i686"; sha1 = "9295267b1d2e308335166e9ceaeedb7c223c6f5c"; }
{ locale = "de"; arch = "linux-x86_64"; sha1 = "635fc409b6433c6a8b4bb48799fe76c50153f944"; } { locale = "de"; arch = "linux-x86_64"; sha1 = "adab84a80a4cd32be09c6a90e47f99b4428024bb"; }
{ locale = "dsb"; arch = "linux-i686"; sha1 = "ed8520837da7170a1e6ba63b1c97e34730ad2f1d"; } { locale = "dsb"; arch = "linux-i686"; sha1 = "79687bd933bb08a9c789976913a5ae7d90d4ef15"; }
{ locale = "dsb"; arch = "linux-x86_64"; sha1 = "7ea5a1cfe9f25364e9d7902cf93459478fddac5e"; } { locale = "dsb"; arch = "linux-x86_64"; sha1 = "4c307bc31606a579b007cee13d1e7bf3a14f5286"; }
{ locale = "el"; arch = "linux-i686"; sha1 = "831e7929fa7fff2e410359b6a599e293f7587f71"; } { locale = "el"; arch = "linux-i686"; sha1 = "02d0e04554ef168b84143b78180b9280c4ce4410"; }
{ locale = "el"; arch = "linux-x86_64"; sha1 = "fb9829b8a41fc07f54ca21260b0e33f178a8c392"; } { locale = "el"; arch = "linux-x86_64"; sha1 = "8c84668f4a856a5b5bcedc694d261bbeab71dfea"; }
{ locale = "en-GB"; arch = "linux-i686"; sha1 = "f122389f405bb36231139a50198e969a11898273"; } { locale = "en-GB"; arch = "linux-i686"; sha1 = "c5949c47c761ee65707877a9449cd4f9aff3a76a"; }
{ locale = "en-GB"; arch = "linux-x86_64"; sha1 = "919e765df3434d4349c3d5a8dbd5a3030f749d09"; } { locale = "en-GB"; arch = "linux-x86_64"; sha1 = "c9a2fb70e37861983d33b5fe0c999e6091671fc1"; }
{ locale = "en-US"; arch = "linux-i686"; sha1 = "a75b1c5106eaefec2c6c68538b870f6fa21667c1"; } { locale = "en-US"; arch = "linux-i686"; sha1 = "c6fc2b42f50ae06c7fd91823ed61d755e0356d9b"; }
{ locale = "en-US"; arch = "linux-x86_64"; sha1 = "5ed50e7ba72beec9b46155ffc2958b7ec3c287af"; } { locale = "en-US"; arch = "linux-x86_64"; sha1 = "68664136ec20e48faa4516d6a7d48081a365d3b2"; }
{ locale = "en-ZA"; arch = "linux-i686"; sha1 = "061a683c163d48c79246a28562b7047f492f87e3"; } { locale = "en-ZA"; arch = "linux-i686"; sha1 = "4393198c2b4849d840b0e9c1e5ccbf20cbc9cf79"; }
{ locale = "en-ZA"; arch = "linux-x86_64"; sha1 = "d10d80b665c85b8e90be69b3192ec8d0ec623bf3"; } { locale = "en-ZA"; arch = "linux-x86_64"; sha1 = "e533254eb720b64ca76ab3507a422e923048a7b7"; }
{ locale = "eo"; arch = "linux-i686"; sha1 = "65e68765f422a3c829faf7f25f6b832223c27711"; } { locale = "eo"; arch = "linux-i686"; sha1 = "b4ebd01b5491c5ba159cf239783e4e5caef04690"; }
{ locale = "eo"; arch = "linux-x86_64"; sha1 = "a036d85b96a319bd677b17f640329a247d7046ed"; } { locale = "eo"; arch = "linux-x86_64"; sha1 = "b25dc3f751e89e517f8cb1850ada4fdfbadf9f4a"; }
{ locale = "es-AR"; arch = "linux-i686"; sha1 = "9fdccf38442e4d46aca7ad7f0d2936cf2430840f"; } { locale = "es-AR"; arch = "linux-i686"; sha1 = "0839ccab9c807979f56346dc2470a56f5581ae68"; }
{ locale = "es-AR"; arch = "linux-x86_64"; sha1 = "c28754a1f2dd926202edaf13241d0b22de744cd1"; } { locale = "es-AR"; arch = "linux-x86_64"; sha1 = "a82c320792f2ea05b29c5bc5ed643035d442fb95"; }
{ locale = "es-CL"; arch = "linux-i686"; sha1 = "900b4573ee4611c537cd97ac353c9200d4a09387"; } { locale = "es-CL"; arch = "linux-i686"; sha1 = "9d9d9261fbb51a830a10e83037b22e447ad6c27d"; }
{ locale = "es-CL"; arch = "linux-x86_64"; sha1 = "235dfe745c2e5de80deadc22e9e0fcfef0d48ee4"; } { locale = "es-CL"; arch = "linux-x86_64"; sha1 = "07dee6c8bc2c980ecb8cd8cbb5a63600cf362f5f"; }
{ locale = "es-ES"; arch = "linux-i686"; sha1 = "1236b095b4a6aed92a574c96aa0d724abf6de934"; } { locale = "es-ES"; arch = "linux-i686"; sha1 = "b01a5d91bdaade225269d3cf11d2084cfd4761cf"; }
{ locale = "es-ES"; arch = "linux-x86_64"; sha1 = "f4d83aa231a22f981c4177971414061b562620fb"; } { locale = "es-ES"; arch = "linux-x86_64"; sha1 = "4bfbf00ea35a78de8b090c08757f670c4627eef2"; }
{ locale = "es-MX"; arch = "linux-i686"; sha1 = "fd5e4b7f019b12a307909ab481579d4b717a0ae2"; } { locale = "es-MX"; arch = "linux-i686"; sha1 = "7f23abb538237c2ee92877d8f101f4673ac0f2da"; }
{ locale = "es-MX"; arch = "linux-x86_64"; sha1 = "4b4a33fd2a6aa8061008f7a22c5c970490f64127"; } { locale = "es-MX"; arch = "linux-x86_64"; sha1 = "cc75fba6bf1744d22aa74608bf09671b9d81506e"; }
{ locale = "et"; arch = "linux-i686"; sha1 = "db06c7ea90e42b7dd55e95c3c1c65c3464842056"; } { locale = "et"; arch = "linux-i686"; sha1 = "b4805599f84bbde52e46c2d171eca6107cba2aba"; }
{ locale = "et"; arch = "linux-x86_64"; sha1 = "2842e4cb8c1c07dc221acca4dc4965ed25a2c993"; } { locale = "et"; arch = "linux-x86_64"; sha1 = "2893a417c825ea340c4ff1002679d0b2fd832903"; }
{ locale = "eu"; arch = "linux-i686"; sha1 = "bf5d17a4ba5f08574e7aaa9d34507cff22da87d6"; } { locale = "eu"; arch = "linux-i686"; sha1 = "9f44826b49aa5302e1219f593b53d91ae9b158ab"; }
{ locale = "eu"; arch = "linux-x86_64"; sha1 = "74fef0cd9fe3ec31e2d3127662d33d0b2f02cfe5"; } { locale = "eu"; arch = "linux-x86_64"; sha1 = "01367745cf5e68adedba8459e837d15d4be6bdb4"; }
{ locale = "fa"; arch = "linux-i686"; sha1 = "05b07e6d1d274fafbc9a2ce201d36ea3cccbffd3"; } { locale = "fa"; arch = "linux-i686"; sha1 = "776a0d78acc1f4cf4f1f6bfb6dfad251ad3ffd97"; }
{ locale = "fa"; arch = "linux-x86_64"; sha1 = "8e9ad7e990c8091fccda1a6651a5711b61147cd9"; } { locale = "fa"; arch = "linux-x86_64"; sha1 = "aaa3ee98401cbe9d1e55284260077117eb80b6c2"; }
{ locale = "ff"; arch = "linux-i686"; sha1 = "86cf25b38865428ea4c744a3fe438bf88d2994f3"; } { locale = "ff"; arch = "linux-i686"; sha1 = "1294a53f08e1527b215ced2ac588c1f8c4f64c76"; }
{ locale = "ff"; arch = "linux-x86_64"; sha1 = "c90ad173f42267a0b8ef16ad4c0b4f29299e6eed"; } { locale = "ff"; arch = "linux-x86_64"; sha1 = "ea127b16239a3c7916399f824ea0f06201509271"; }
{ locale = "fi"; arch = "linux-i686"; sha1 = "e22411eeb539a1fde08f20b44cfb1b5ff017b582"; } { locale = "fi"; arch = "linux-i686"; sha1 = "84075e77d0cf621992620c9b1783da1306a83d95"; }
{ locale = "fi"; arch = "linux-x86_64"; sha1 = "ed7b3383209ceb588126a0bcb4433e5bbda2b46f"; } { locale = "fi"; arch = "linux-x86_64"; sha1 = "1c944f62ead881b5b48288afefb925db7cfbacde"; }
{ locale = "fr"; arch = "linux-i686"; sha1 = "90c2a9fb92335d504a9dc9d8a6afedd494b69f8b"; } { locale = "fr"; arch = "linux-i686"; sha1 = "30eeed505e00b77aad1a31a969db78191e87cf87"; }
{ locale = "fr"; arch = "linux-x86_64"; sha1 = "80e4efdd06b1aa47f348e4056c134bf24a74f4cc"; } { locale = "fr"; arch = "linux-x86_64"; sha1 = "562f2d0c347dc531c8ac663e9ece59691394b148"; }
{ locale = "fy-NL"; arch = "linux-i686"; sha1 = "122998b498e79a8eb6daf0e877e38fafeeedd679"; } { locale = "fy-NL"; arch = "linux-i686"; sha1 = "8679515a53b1ef3f763c7b569ab326704988ca82"; }
{ locale = "fy-NL"; arch = "linux-x86_64"; sha1 = "99eb9694ecbd3aa892524467ced78bbc0a97d1fd"; } { locale = "fy-NL"; arch = "linux-x86_64"; sha1 = "d8f3db4850fe58c7d059c368993f066d241b021f"; }
{ locale = "ga-IE"; arch = "linux-i686"; sha1 = "adb3d58c050adfb38576fcbbc62a28bfab5f196d"; } { locale = "ga-IE"; arch = "linux-i686"; sha1 = "508a198d8b02b25587d40ad246d5bdc1a44988b9"; }
{ locale = "ga-IE"; arch = "linux-x86_64"; sha1 = "9a5a8a4a78c9b2f114609552e952a5ad4f7c1603"; } { locale = "ga-IE"; arch = "linux-x86_64"; sha1 = "1a335d85bb0173b71de3d70c1d147cb905166e92"; }
{ locale = "gd"; arch = "linux-i686"; sha1 = "876bb49fa2399e53d68bf8bd9c403b008068c5c9"; } { locale = "gd"; arch = "linux-i686"; sha1 = "316a75f2ee606b19eb83c5b8cd57258a8a6dc1dc"; }
{ locale = "gd"; arch = "linux-x86_64"; sha1 = "06dd806eba47b93f85d49cfabaefbb1d4ed04f49"; } { locale = "gd"; arch = "linux-x86_64"; sha1 = "55504df9a96de3319d2b3610512a6e2a2eed9cb9"; }
{ locale = "gl"; arch = "linux-i686"; sha1 = "3b5867e14e051c8405ebe79f1147c89340ccdfed"; } { locale = "gl"; arch = "linux-i686"; sha1 = "06be057d4d5480e239b5e368d16efe72c75196a2"; }
{ locale = "gl"; arch = "linux-x86_64"; sha1 = "25f5e9ca92c194cbca6d3b06089e884b8c0aed13"; } { locale = "gl"; arch = "linux-x86_64"; sha1 = "9026a4497593920a004cc1aec8ef0353144a56da"; }
{ locale = "gu-IN"; arch = "linux-i686"; sha1 = "df3db443c51ea75a22a9ca0666c92c28b43db5e4"; } { locale = "gu-IN"; arch = "linux-i686"; sha1 = "1149415676f1e3b9c9280c0579e0daff1da4b729"; }
{ locale = "gu-IN"; arch = "linux-x86_64"; sha1 = "2af9d3810a60e0cb2674c74925f9076996abef3d"; } { locale = "gu-IN"; arch = "linux-x86_64"; sha1 = "6b0047659dbe79c57949baf759ab17c498208d58"; }
{ locale = "he"; arch = "linux-i686"; sha1 = "b8b89d4a3e7836c2bf26819e917b7a655aee44d5"; } { locale = "he"; arch = "linux-i686"; sha1 = "118dd35ef57c44057da4808884fbc8f8c8181246"; }
{ locale = "he"; arch = "linux-x86_64"; sha1 = "9a56a307750c21cdfbefda1abaf1763c2aab1875"; } { locale = "he"; arch = "linux-x86_64"; sha1 = "c37aa77d1ff50384c6482efd67fa2fd3c9a13f9f"; }
{ locale = "hi-IN"; arch = "linux-i686"; sha1 = "0b8ddcb306d23fdd67abcc098c11420133fea996"; } { locale = "hi-IN"; arch = "linux-i686"; sha1 = "d9259311610b6fe978f2e45beda9f2a1b78c6cfa"; }
{ locale = "hi-IN"; arch = "linux-x86_64"; sha1 = "ae56f2f5caf403ab2f569f843e234cb983e6eb85"; } { locale = "hi-IN"; arch = "linux-x86_64"; sha1 = "b68136415d53dfb865fe82132457abf5016f4df0"; }
{ locale = "hr"; arch = "linux-i686"; sha1 = "3a829bf25984b0004edb130ef9df5d826ddac5a9"; } { locale = "hr"; arch = "linux-i686"; sha1 = "a6a6e98ac3932b5332b423a730806e4ee4bf834f"; }
{ locale = "hr"; arch = "linux-x86_64"; sha1 = "ada293b8ab51d393eda5be8f078e69c584ef6dda"; } { locale = "hr"; arch = "linux-x86_64"; sha1 = "34b8017490d86359fa6530fa5c3b1b5b15975c28"; }
{ locale = "hsb"; arch = "linux-i686"; sha1 = "3ed330ee86404bdc6080feaeef0f6a095ca0fbee"; } { locale = "hsb"; arch = "linux-i686"; sha1 = "f8560358636bfd0d705b963b248dcdce34bbdb5d"; }
{ locale = "hsb"; arch = "linux-x86_64"; sha1 = "ee20f0c59b0340f68f066a78f7455d9c0d95fd2f"; } { locale = "hsb"; arch = "linux-x86_64"; sha1 = "287aba425ef473b8fe5c0ff0a8d75fafd8448bf2"; }
{ locale = "hu"; arch = "linux-i686"; sha1 = "ff66764fe50e5115bf70acce753aa240feffea28"; } { locale = "hu"; arch = "linux-i686"; sha1 = "6cbe1731f7d28f91e4ce86e2d8a9816fc35eb3bd"; }
{ locale = "hu"; arch = "linux-x86_64"; sha1 = "5e7605de920f18b64b0b4974d46e5fc2f2f4e869"; } { locale = "hu"; arch = "linux-x86_64"; sha1 = "797ef6d8493bf3515ba25096dc8daeea8b9513f4"; }
{ locale = "hy-AM"; arch = "linux-i686"; sha1 = "c074b5ce903cd4d8ab66ea79a15025b4eb492774"; } { locale = "hy-AM"; arch = "linux-i686"; sha1 = "f2b64ab6b75736d93c8480854dc56563624c2b9d"; }
{ locale = "hy-AM"; arch = "linux-x86_64"; sha1 = "7284c71aaa692a98a451ac862af9e0ed6519df55"; } { locale = "hy-AM"; arch = "linux-x86_64"; sha1 = "8609dd55931b027665e3763ca13b7e6b9a313ca1"; }
{ locale = "id"; arch = "linux-i686"; sha1 = "80fa7c3cd2dea7ee4e4acccc74c8b6936cfe3fa7"; } { locale = "id"; arch = "linux-i686"; sha1 = "698a344f8ecf81f2d1a8526a32e3771e8461e809"; }
{ locale = "id"; arch = "linux-x86_64"; sha1 = "7ddf8a8c2c3b590a76463e13f8f677c3cb985302"; } { locale = "id"; arch = "linux-x86_64"; sha1 = "291eb09d08e552231726639c9055d53ca5c2c016"; }
{ locale = "is"; arch = "linux-i686"; sha1 = "a52ad05729c59acfe826cb211f5da631036aa366"; } { locale = "is"; arch = "linux-i686"; sha1 = "fb30ef94ce3f31e65c67f176ed7adb59d91cf81e"; }
{ locale = "is"; arch = "linux-x86_64"; sha1 = "7e21475ef56523e7b7bd92cba2e2f4a46bb437e4"; } { locale = "is"; arch = "linux-x86_64"; sha1 = "ad932eb32b20745f34f91fdd91dc32bda217b19f"; }
{ locale = "it"; arch = "linux-i686"; sha1 = "48191529939cf46cf0c0573a4fcd53a9703c8db8"; } { locale = "it"; arch = "linux-i686"; sha1 = "eae49df656303ae15411d398f998b21bd0e1657d"; }
{ locale = "it"; arch = "linux-x86_64"; sha1 = "6b1d93070e8c29573e32abd3ba7b7bf7f07ab269"; } { locale = "it"; arch = "linux-x86_64"; sha1 = "5461ae930d32eb51f2ffdcfc5bc22104454088df"; }
{ locale = "ja"; arch = "linux-i686"; sha1 = "136b76925e0b7f766ccf9ca1ee1dcdb7a2046509"; } { locale = "ja"; arch = "linux-i686"; sha1 = "addac275389073eef9d0fbc296738eb3a61d532d"; }
{ locale = "ja"; arch = "linux-x86_64"; sha1 = "0fe5a34c842963e83b14a79c2309b6a906eae5f8"; } { locale = "ja"; arch = "linux-x86_64"; sha1 = "6e07be0a7261d18b081241d237acb5c8d3f1b3b1"; }
{ locale = "kk"; arch = "linux-i686"; sha1 = "98c8801e99639de3609dcaba57eacfd2d3eaffc6"; } { locale = "kk"; arch = "linux-i686"; sha1 = "85e79bf11e71b9163fa44e9bae325d10b8efd761"; }
{ locale = "kk"; arch = "linux-x86_64"; sha1 = "ae3d6c13e877ae207c36c2c6e9e4eb5da3d76fff"; } { locale = "kk"; arch = "linux-x86_64"; sha1 = "1bab828e561666296b5e81bc191139d0f1609764"; }
{ locale = "km"; arch = "linux-i686"; sha1 = "4bfa2ddd28447fd34fd9e50b3f75033c8212d3c2"; } { locale = "km"; arch = "linux-i686"; sha1 = "9651d39d746ceaadef2b7eda2bdb766beb4bf649"; }
{ locale = "km"; arch = "linux-x86_64"; sha1 = "bbf1b20376f92c353859d671536436a22a87faa9"; } { locale = "km"; arch = "linux-x86_64"; sha1 = "3d5ab65a949d78d8be8fc5ef7da2bbfe4fb76175"; }
{ locale = "kn"; arch = "linux-i686"; sha1 = "edf31da5957d27e2b60a13d91b4520c7f67da77a"; } { locale = "kn"; arch = "linux-i686"; sha1 = "ce1ba808ae2433cec57c7f46288cc5b19e127fc6"; }
{ locale = "kn"; arch = "linux-x86_64"; sha1 = "275c253e1b913f8cc2a2437602c7edd66eaab011"; } { locale = "kn"; arch = "linux-x86_64"; sha1 = "8ab3ac9d4e1fcb034a726c85f4de64e8908a752f"; }
{ locale = "ko"; arch = "linux-i686"; sha1 = "b213520660c5d6a1c85c3f6a11ff7c9d7f947274"; } { locale = "ko"; arch = "linux-i686"; sha1 = "34914da7a6e0f1806f04fcb4327a7debdb90a2ea"; }
{ locale = "ko"; arch = "linux-x86_64"; sha1 = "65a37cccaf55c9fa251157da1d93dcafc4ddc3b8"; } { locale = "ko"; arch = "linux-x86_64"; sha1 = "6084229e0f1b0861ad35ac958e8d788918955f1d"; }
{ locale = "lij"; arch = "linux-i686"; sha1 = "368a3517809b7560908162efeee6d10842f537ea"; } { locale = "lij"; arch = "linux-i686"; sha1 = "a768cadd13ae282e977b44f18e71d232aeba5f56"; }
{ locale = "lij"; arch = "linux-x86_64"; sha1 = "212b14ce7e8bbd96a60d23fcd8a8598f8f9ed900"; } { locale = "lij"; arch = "linux-x86_64"; sha1 = "e47841fd4827a907380fe605643898dd8d88cf99"; }
{ locale = "lt"; arch = "linux-i686"; sha1 = "d27ccfe0459f6b3567818af9e5ccd5d84dd810ba"; } { locale = "lt"; arch = "linux-i686"; sha1 = "10e8a3d6833f904d181daf974b6da2792681f824"; }
{ locale = "lt"; arch = "linux-x86_64"; sha1 = "f47264b2fa1e6f073d0300f0476fed32fb8bca48"; } { locale = "lt"; arch = "linux-x86_64"; sha1 = "411ce9b9b89722de20310bc32b38edb82454ff58"; }
{ locale = "lv"; arch = "linux-i686"; sha1 = "abf68081c4c011552974cf191463186fb350bf7e"; } { locale = "lv"; arch = "linux-i686"; sha1 = "8d2ec7350ba90242a152024681e0812a6260f064"; }
{ locale = "lv"; arch = "linux-x86_64"; sha1 = "d3a3d999205418043bef4680c256f1555ab4e615"; } { locale = "lv"; arch = "linux-x86_64"; sha1 = "9035394603007edd34946d32230386e4ebf861ce"; }
{ locale = "mai"; arch = "linux-i686"; sha1 = "2f88361cb70283bd29f641762b0ba9205a3db932"; } { locale = "mai"; arch = "linux-i686"; sha1 = "2df94bc41f93706d671de419481d8c90468b9fb0"; }
{ locale = "mai"; arch = "linux-x86_64"; sha1 = "4802f3a575d68d4e471eab9fbb638f8dcf6801f3"; } { locale = "mai"; arch = "linux-x86_64"; sha1 = "6f534e605bc96dfde98b699ca8b31d7b542f3342"; }
{ locale = "mk"; arch = "linux-i686"; sha1 = "1a82499a0b9eb4bcdc4ffcf305de7e250d4ddf91"; } { locale = "mk"; arch = "linux-i686"; sha1 = "6d83eec6d7b54dad5c926da0efe7f205442ec7f8"; }
{ locale = "mk"; arch = "linux-x86_64"; sha1 = "6d0eaf89b4f7d0821be181fbe877935db0cd6ea5"; } { locale = "mk"; arch = "linux-x86_64"; sha1 = "7e1c3bddcbeadebcaf1a2c0d30940617662f998d"; }
{ locale = "ml"; arch = "linux-i686"; sha1 = "16f7c329c62c7430b7e989e4d20b4fa406d34e57"; } { locale = "ml"; arch = "linux-i686"; sha1 = "7b8cfb0adf27ca3cbe70b90b45a15e6ce17ecd6c"; }
{ locale = "ml"; arch = "linux-x86_64"; sha1 = "ea6b4c37abb4bde4c3c97a6de01414df336546b9"; } { locale = "ml"; arch = "linux-x86_64"; sha1 = "8dada691c38ea84829e8f097d3a4c8c8f92b5dbb"; }
{ locale = "mr"; arch = "linux-i686"; sha1 = "e21203ab9285444b5dd19a7add22efd7750a75c4"; } { locale = "mr"; arch = "linux-i686"; sha1 = "2f2558df6b06b948e1d80a6721021aff6080e23e"; }
{ locale = "mr"; arch = "linux-x86_64"; sha1 = "0992eabe63f8a9b759be99a410a600df53f70c80"; } { locale = "mr"; arch = "linux-x86_64"; sha1 = "6f6fda2c3c4194f4ec309c0ff9585c8f5f764f13"; }
{ locale = "ms"; arch = "linux-i686"; sha1 = "7c5314f43623fa25ca1813c58f8a0f3bfcb19624"; } { locale = "ms"; arch = "linux-i686"; sha1 = "3006ffc5a77760fb42f3e3ec47185f09cdb2bd71"; }
{ locale = "ms"; arch = "linux-x86_64"; sha1 = "8be86e6ff4f8c0baa220143d2798c3f707db6752"; } { locale = "ms"; arch = "linux-x86_64"; sha1 = "a5f6a23ba5ee065186fd6abde7678218013a1904"; }
{ locale = "nb-NO"; arch = "linux-i686"; sha1 = "fcc032e0ceddbe41527d8adad42c55a4a8626660"; } { locale = "nb-NO"; arch = "linux-i686"; sha1 = "b4418503c6d4c6eb558f5ecbf752014e4daa9940"; }
{ locale = "nb-NO"; arch = "linux-x86_64"; sha1 = "8c4365d752844adb31df201901c951b720b7401a"; } { locale = "nb-NO"; arch = "linux-x86_64"; sha1 = "8551b8464566f57313b394de089545c5e3d30673"; }
{ locale = "nl"; arch = "linux-i686"; sha1 = "42adac56689caf8c2cb838bad8c14b6a81c61456"; } { locale = "nl"; arch = "linux-i686"; sha1 = "e2fb71322600bee83e601309c956c8192dbdf2d7"; }
{ locale = "nl"; arch = "linux-x86_64"; sha1 = "3c835567fe91ae8c386199957b2d64d185020ca9"; } { locale = "nl"; arch = "linux-x86_64"; sha1 = "042a29623fca08048dddb2e3ecbde03fd4453d36"; }
{ locale = "nn-NO"; arch = "linux-i686"; sha1 = "47c29bceee08af768f90f54883300704630ac478"; } { locale = "nn-NO"; arch = "linux-i686"; sha1 = "f72a166a539df1e45f8d9c5cd5529b2d0d01e813"; }
{ locale = "nn-NO"; arch = "linux-x86_64"; sha1 = "57ac712d8b93d19a155ebf08929ee395d5975b09"; } { locale = "nn-NO"; arch = "linux-x86_64"; sha1 = "f66d7d7f6218cd0f320ad1061aead0733ccab242"; }
{ locale = "or"; arch = "linux-i686"; sha1 = "a96e39bb3eceb2e7252ad9e659981e14975c025b"; } { locale = "or"; arch = "linux-i686"; sha1 = "81f146d076fc68fd87956001b31a34adac1d1af0"; }
{ locale = "or"; arch = "linux-x86_64"; sha1 = "004b52fb5ce3da6106c6875369299a85fd9f2091"; } { locale = "or"; arch = "linux-x86_64"; sha1 = "87d7d7a747f83a26b1f9b501d902e88032af38da"; }
{ locale = "pa-IN"; arch = "linux-i686"; sha1 = "4cf037c5878372a87f18122e8dc205ace8292f68"; } { locale = "pa-IN"; arch = "linux-i686"; sha1 = "49239260e0abb385e5b3c6ae23c0a809306402e8"; }
{ locale = "pa-IN"; arch = "linux-x86_64"; sha1 = "30128d1d927194cc1eac4b8d297faa5ab5d74b1c"; } { locale = "pa-IN"; arch = "linux-x86_64"; sha1 = "105fae6a1e1e9a4ae186054c6bcb418ab607d587"; }
{ locale = "pl"; arch = "linux-i686"; sha1 = "93aae61fcb7f17f5e83ee1ac8af190ee9c28bf5b"; } { locale = "pl"; arch = "linux-i686"; sha1 = "4f5d41cbe93f931d3751b7cf229ea0781edf9c7c"; }
{ locale = "pl"; arch = "linux-x86_64"; sha1 = "f7ae0d826144607bb814c7b1c8dde63ad679148c"; } { locale = "pl"; arch = "linux-x86_64"; sha1 = "0cce4925e602d36e9c25a6691b60dc61680c45bb"; }
{ locale = "pt-BR"; arch = "linux-i686"; sha1 = "48cedf32ea01a9548902c8ce0a998c01d2c3da12"; } { locale = "pt-BR"; arch = "linux-i686"; sha1 = "3b98ed2e3186ef2b6cd418fa45faec6a5acbbdd2"; }
{ locale = "pt-BR"; arch = "linux-x86_64"; sha1 = "f31b4c25be102bc96f8795721a19c3c9fdd00043"; } { locale = "pt-BR"; arch = "linux-x86_64"; sha1 = "ccaab26ba92b44b60a1de4e1d75504e0233cbc76"; }
{ locale = "pt-PT"; arch = "linux-i686"; sha1 = "e735996d21d15020bea72d9b01b0686d8fb1cd9e"; } { locale = "pt-PT"; arch = "linux-i686"; sha1 = "159941d190c72b219586450acf1214f039d7207b"; }
{ locale = "pt-PT"; arch = "linux-x86_64"; sha1 = "705dedac0d8b9df87301eb06251b81e8d5f34d47"; } { locale = "pt-PT"; arch = "linux-x86_64"; sha1 = "c650d657e97653364926ad1b877d3a186d3d6dca"; }
{ locale = "rm"; arch = "linux-i686"; sha1 = "ad7ce0ef601763795f5998e56b89d77f466f50de"; } { locale = "rm"; arch = "linux-i686"; sha1 = "2b79dbc77bbf971a2856ae80107fabe0aa0e18cb"; }
{ locale = "rm"; arch = "linux-x86_64"; sha1 = "50f08008a9a12172f379dafaea656cae3f7a2d5b"; } { locale = "rm"; arch = "linux-x86_64"; sha1 = "e8584e6791dd50626cd9dcafe45e5536a1eb35fd"; }
{ locale = "ro"; arch = "linux-i686"; sha1 = "6f925c413fe655a35ffad0b9d3b22bc6c9af15d1"; } { locale = "ro"; arch = "linux-i686"; sha1 = "8083ae297080f3543751a24ca3f8638a8bbc2a02"; }
{ locale = "ro"; arch = "linux-x86_64"; sha1 = "6592bf15bdf465100dbb00a00b5e77eb10f42cae"; } { locale = "ro"; arch = "linux-x86_64"; sha1 = "43967d6adbe01454696de9330f056731048458a9"; }
{ locale = "ru"; arch = "linux-i686"; sha1 = "2bf3af22a827f6ea9ba849bcbe2da6687fecaa2c"; } { locale = "ru"; arch = "linux-i686"; sha1 = "c939bd0154475d4c3153446b6f6de1d5e17b1215"; }
{ locale = "ru"; arch = "linux-x86_64"; sha1 = "35817ed10d23415bc8c8359fc0ac080c84a648fc"; } { locale = "ru"; arch = "linux-x86_64"; sha1 = "58bc5cb7c33063455ea2ed79da9b9c38d2a8e061"; }
{ locale = "si"; arch = "linux-i686"; sha1 = "084109d7bb0b17da1d44d0cd954d55e1ce0b03ee"; } { locale = "si"; arch = "linux-i686"; sha1 = "4f66548142a828b9331f9588955eeae7ff8b4ffd"; }
{ locale = "si"; arch = "linux-x86_64"; sha1 = "83c8e57b708a62cfa159f5a58b3d808fd3ca7e2d"; } { locale = "si"; arch = "linux-x86_64"; sha1 = "795f8920aafdf38feae90d6cf9013bb4da4d275c"; }
{ locale = "sk"; arch = "linux-i686"; sha1 = "ea7637b7c8228ae9edab0d82bebc4bb7bda7c2a1"; } { locale = "sk"; arch = "linux-i686"; sha1 = "7fc858a8bea682e6c4b0b46dc0036f5b33d569b6"; }
{ locale = "sk"; arch = "linux-x86_64"; sha1 = "6b6a13d882eb59d14d51a24be90153b6c928ce01"; } { locale = "sk"; arch = "linux-x86_64"; sha1 = "15c049314dd8beb396c4f8f169b5c5d522d53d31"; }
{ locale = "sl"; arch = "linux-i686"; sha1 = "dfbce85ca19bdb9aeecf23027a9f4e6e4eb4dba8"; } { locale = "sl"; arch = "linux-i686"; sha1 = "2abcb66b66093b4b5a5c502d50b395d3967d5375"; }
{ locale = "sl"; arch = "linux-x86_64"; sha1 = "09ba3868ae42a1e937f21c30d7b56d8c74668e5c"; } { locale = "sl"; arch = "linux-x86_64"; sha1 = "deda484b890c22c0c15845891eb5ece860ecbca2"; }
{ locale = "son"; arch = "linux-i686"; sha1 = "05c37865cea7ebc007099c14b2a38c315541477b"; } { locale = "son"; arch = "linux-i686"; sha1 = "b031c68c64e77ae2e6332c141f367052afb571ba"; }
{ locale = "son"; arch = "linux-x86_64"; sha1 = "de6aafaaff37f9ffd5dc2a5dc793a8034340eb16"; } { locale = "son"; arch = "linux-x86_64"; sha1 = "2e6b18cb89b6bb6299caa0dd3c128e170984f394"; }
{ locale = "sq"; arch = "linux-i686"; sha1 = "0c2b5a383d33a347e2c136a76f99c6a72fdf14a1"; } { locale = "sq"; arch = "linux-i686"; sha1 = "88295bd36eaa1ec0ba42b1b2eb8af581ef2efe51"; }
{ locale = "sq"; arch = "linux-x86_64"; sha1 = "e6fb929c285406656ae25156eeb8e446f69cb5ec"; } { locale = "sq"; arch = "linux-x86_64"; sha1 = "8e8b4782d6352bfe055482c2d82bc5356bb8059c"; }
{ locale = "sr"; arch = "linux-i686"; sha1 = "2699adadaf32b89077b2e11fff1966841e4df500"; } { locale = "sr"; arch = "linux-i686"; sha1 = "399cd05823725f4e5d5514aad3c32716a7b69fb3"; }
{ locale = "sr"; arch = "linux-x86_64"; sha1 = "53c0d1d7559b4a9f6310b2bbec039a9d02a42200"; } { locale = "sr"; arch = "linux-x86_64"; sha1 = "d78069ed45897c256860cb7a2be74c42906f277c"; }
{ locale = "sv-SE"; arch = "linux-i686"; sha1 = "5e680c4a9f9c0be0b74fee65688a4e748b73a7ec"; } { locale = "sv-SE"; arch = "linux-i686"; sha1 = "90b136366b4309258417725c7979e424cd20236e"; }
{ locale = "sv-SE"; arch = "linux-x86_64"; sha1 = "feafa153bf9dc1827acb64a219e2eeecda99e49d"; } { locale = "sv-SE"; arch = "linux-x86_64"; sha1 = "e604010468adfb6d6925c3d6e82b95a6836bd645"; }
{ locale = "ta"; arch = "linux-i686"; sha1 = "d372de893c61af574ce5543dbea51b86e89ac24b"; } { locale = "ta"; arch = "linux-i686"; sha1 = "d81a2a85e1f01f55d8e65b82d703a89391aff87a"; }
{ locale = "ta"; arch = "linux-x86_64"; sha1 = "774e8166ca5418be29bbf75665431301bab0c261"; } { locale = "ta"; arch = "linux-x86_64"; sha1 = "dbbd03bf0deae8dd50c264217c38d66eb8f6abb6"; }
{ locale = "te"; arch = "linux-i686"; sha1 = "84619cf1f9fca5bc49312e6929e0e27fb38ea058"; } { locale = "te"; arch = "linux-i686"; sha1 = "b9e27b19acdf0c6c97b85361e51d04ef4dfb71ef"; }
{ locale = "te"; arch = "linux-x86_64"; sha1 = "abc1565856241ebb91ceb41c6891c8db843946dd"; } { locale = "te"; arch = "linux-x86_64"; sha1 = "a78bffc96adcedc797cd328c3aeda5cb59ff5154"; }
{ locale = "th"; arch = "linux-i686"; sha1 = "337b5d30b5da8eef79992c33755956efd2c98297"; } { locale = "th"; arch = "linux-i686"; sha1 = "df7728a57a7f46035b5a5b491c34110a1871316c"; }
{ locale = "th"; arch = "linux-x86_64"; sha1 = "02e7c2ab7ed3ff5da36cb3fca19e019961dd015c"; } { locale = "th"; arch = "linux-x86_64"; sha1 = "8ccd4665a12b5db9ab8457c2363243a1cbcd05ed"; }
{ locale = "tr"; arch = "linux-i686"; sha1 = "e3e0caef6f82a09edfbe9024701d829c0e5bc625"; } { locale = "tr"; arch = "linux-i686"; sha1 = "49dca58d2925f70c8ec7fd7d28d04475c05acff1"; }
{ locale = "tr"; arch = "linux-x86_64"; sha1 = "184ffa3647d57adaf419f9209682aca913249b49"; } { locale = "tr"; arch = "linux-x86_64"; sha1 = "ae887516cf189462a38240d62a608f1bd86713fa"; }
{ locale = "uk"; arch = "linux-i686"; sha1 = "0ae60e506d63373730895526bc7bcb9dc5c7b814"; } { locale = "uk"; arch = "linux-i686"; sha1 = "fa1d11f740987538c0ca3967b3428a341e2f1c8d"; }
{ locale = "uk"; arch = "linux-x86_64"; sha1 = "f54d9fb8b704178bceed03646af17ab8e49a94d4"; } { locale = "uk"; arch = "linux-x86_64"; sha1 = "f65ae80186d0fa616197ee46968ec94c0dbebc2d"; }
{ locale = "uz"; arch = "linux-i686"; sha1 = "77973a500608be31185ea172b4c4f21191838e9d"; } { locale = "uz"; arch = "linux-i686"; sha1 = "69b24ed58ca2db356bf97c809f91b3551e9f1b20"; }
{ locale = "uz"; arch = "linux-x86_64"; sha1 = "5cb1cb1618cdc2b4515b3569c2ef8341b91d547b"; } { locale = "uz"; arch = "linux-x86_64"; sha1 = "2fb40c9c55f1e0eb83602fa7cb06415846657b67"; }
{ locale = "vi"; arch = "linux-i686"; sha1 = "d957cedd5a36546f7d9cef3ddcdbdfb9dfb376a3"; } { locale = "vi"; arch = "linux-i686"; sha1 = "1817398c00bfff76c09151450cba4e901c0fd93a"; }
{ locale = "vi"; arch = "linux-x86_64"; sha1 = "992d5939c9db596dfc1e118c80a5fb2c08c96753"; } { locale = "vi"; arch = "linux-x86_64"; sha1 = "f754bb817367da0640e6bfbe53129a4221250751"; }
{ locale = "xh"; arch = "linux-i686"; sha1 = "1eab731be806a22e29940676d3766190becf9561"; } { locale = "xh"; arch = "linux-i686"; sha1 = "8c3a7a0da6775d06b75d74e763add35eb2b02969"; }
{ locale = "xh"; arch = "linux-x86_64"; sha1 = "fe4872dd673fdbf867921f7c1fbc36ae0be74c3e"; } { locale = "xh"; arch = "linux-x86_64"; sha1 = "724db968c33bfd30540ddb36f8d26e19073aa328"; }
{ locale = "zh-CN"; arch = "linux-i686"; sha1 = "8cc0e2ea6342577761a6ef9655c4f07f9dae1367"; } { locale = "zh-CN"; arch = "linux-i686"; sha1 = "de2b4c514a237f120bb0d9de5039a75b8bb519b0"; }
{ locale = "zh-CN"; arch = "linux-x86_64"; sha1 = "5854d58a2ec318d5dc16f905853fa808774c956d"; } { locale = "zh-CN"; arch = "linux-x86_64"; sha1 = "6b6f8caece54a911124b33c3fce9233d760ae46e"; }
{ locale = "zh-TW"; arch = "linux-i686"; sha1 = "875013ebba184c5a656abb2ab4fee3948689beef"; } { locale = "zh-TW"; arch = "linux-i686"; sha1 = "aa85f39ee92c62d2d1809cf50e158f04a1bb88ea"; }
{ locale = "zh-TW"; arch = "linux-x86_64"; sha1 = "7e416b11856aae2d52bc24b7629fc2d90719e9b1"; } { locale = "zh-TW"; arch = "linux-x86_64"; sha1 = "0f859da4a12559d8b28411b5206b17739ddf869b"; }
]; ];
} }

View File

@ -129,8 +129,8 @@ in {
firefox = common { firefox = common {
pname = "firefox"; pname = "firefox";
version = "41.0.1"; version = "41.0.2";
sha1 = "4f6bf34b7b286e033f401d7d4112ec6310577aae"; sha1 = "5e8243cbbd3ea306bd1e5f1b16079bdcc9af95a4";
}; };
firefox-esr = common { firefox-esr = common {

View File

@ -10,7 +10,7 @@ let
[gtk glib stdenv.cc.cc]; [gtk glib stdenv.cc.cc];
rpathPlugin = makeLibraryPath rpathPlugin = makeLibraryPath
[ stdenv.cc.cc gtk glib xorg.libX11 gdk_pixbuf libXext libXfixes libXrender libXrandr libuuid libXcomposite libpulseaudio ]; ([ stdenv.cc.cc gtk glib xorg.libX11 gdk_pixbuf libXext libXfixes libXrender libXrandr libXcomposite libpulseaudio ] ++ optional (libuuid != null) libuuid);
in in

View File

@ -0,0 +1,18 @@
diff -aur lsyncd-release-2.1.5.orig/configure.ac lsyncd-release-2.1.5/configure.ac
--- lsyncd-release-2.1.5.orig/configure.ac 2013-06-07 18:24:02.000000000 +0600
+++ lsyncd-release-2.1.5/configure.ac 2014-03-04 13:24:15.390350812 +0600
@@ -15,10 +15,10 @@
AC_PROG_INSTALL
AC_PROG_MAKE_SET
-#AC_PATH_PROG([A2X], [a2x], [no])
-#if test x${A2X} = xno ; then
-# AC_MSG_ERROR([Program 'a2x' (package asciidoc) is required])
-#fi
+AC_PATH_PROG([A2X], [a2x], [no])
+if test x${A2X} = xno ; then
+ AC_MSG_ERROR([Program 'a2x' (package asciidoc) is required])
+fi
###
# Checks for Lua

View File

@ -0,0 +1,40 @@
{ stdenv, fetchFromGitHub, automake, autoconf, lua, pkgconfig, rsync,
asciidoc, libxml2, docbook_xml_dtd_45, docbook_xml_xslt, libxslt }:
stdenv.mkDerivation rec {
name = "lsyncd-${version}";
version = "2.1.5";
src = fetchFromGitHub {
owner = "axkibe";
repo = "lsyncd";
rev = "release-${version}";
sha256 = "0jvr2rv34jyjrv7188vdv1z8vgvm4wydqwsp9x5ksfzh9drbq5gn";
};
patches = [ ./configure-a2x-fix.patch ];
preConfigurePhase = ''
substituteInPlace default-rsync.lua \
--replace "binary = '/usr/bin/rsync'," "binary = '${rsync}/bin/rsync',"
'';
configurePhase = ''
./autogen.sh --prefix=$out
./configure --prefix=$out
'';
buildInputs = [
rsync
automake autoconf lua pkgconfig
asciidoc libxml2 docbook_xml_dtd_45 docbook_xml_xslt libxslt
];
meta = with stdenv.lib; {
homepage = https://github.com/axkibe/lsyncd;
description = "A utility that synchronizes local directories with remote targets";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ bobvanderlinden ];
};
}

View File

@ -1,13 +1,13 @@
{stdenv, fetchurl, readline, libssh, intltool, libbsd}: {stdenv, fetchurl, readline, libssh, intltool, libbsd, pkgconfig}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "yafc-1.3.2"; name = "yafc-1.3.6";
src = fetchurl { src = fetchurl {
url = "http://www.yafc-ftp.com/upload/${name}.tar.xz"; url = "http://www.yafc-ftp.com/downloads/${name}.tar.xz";
sha256 = "0rrhik00xynxg5s3ffqlyynvy8ssv8zfaixkpb77baxa274gnbd7"; sha256 = "0wvrljihliggysfnzczc0s74i3ab2c1kzjjs99iqk98nxmb2b8v3";
}; };
buildInputs = [ readline libssh intltool libbsd ]; buildInputs = [ readline libssh intltool libbsd pkgconfig ];
meta = { meta = {
description = "ftp/sftp client with readline, autocompletion and bookmarks"; description = "ftp/sftp client with readline, autocompletion and bookmarks";

View File

@ -12,14 +12,14 @@ let
then "i386" then "i386"
else "amd64"; else "amd64";
shortVersion = "1.13.1-stable"; shortVersion = "1.15-stable";
version = "${shortVersion}_${arch}"; version = "${shortVersion}_${arch}";
url = "http://desktop-download.mendeley.com/download/apt/pool/main/m/mendeleydesktop/mendeleydesktop_${version}.deb"; url = "http://desktop-download.mendeley.com/download/apt/pool/main/m/mendeleydesktop/mendeleydesktop_${version}.deb";
sha256 = if stdenv.system == arch32 sha256 = if stdenv.system == arch32
then "21491da1608daf58da23e7e5eb7619b494b10192acc0f81575daff2a38720f50" then "16274a1ad981f8abd6facae88e8412eaf5c8b9b238ff4e07fa7c7b5f498c3cc7"
else "8db101b26dd2978e991421260a2e55d849014f64005930b2528080bbbaa78600"; else "a455f0cf898f1df66dd5a38c656718a9f8b0f6e80ee7205b37635a8261f9d3cf";
deps = [ deps = [
gcc.cc gcc.cc

View File

@ -9,7 +9,7 @@
}: }:
let let
version = "2.5.3"; version = "2.6.2";
svn = subversionClient.override { perlBindings = true; }; svn = subversionClient.override { perlBindings = true; };
in in
@ -18,7 +18,7 @@ stdenv.mkDerivation {
src = fetchurl { src = fetchurl {
url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"; url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz";
sha256 = "06is8pq8gsia3dav8mgl2zlvms2ny4hs1x0w2792ya51azc2jk8j"; sha256 = "0w56027asrc5s20l5d4rnki7dla66gn84373afqw3mb9pjmkfvk4";
}; };
patches = [ patches = [

View File

@ -0,0 +1,27 @@
{ stdenv, fetchdarcs, ocaml, findlib, cryptokit, yojson, lmdb, zlib }:
stdenv.mkDerivation rec {
name = "pijul-${version}";
version = "0.1";
src = fetchdarcs {
url = "http://pijul.org/";
rev = version;
sha256 = "0r189xx900w4smq6nyy1wnrjf9sgqrqw5as0l7k6gq0ra36szzff";
};
buildInputs = [ ocaml findlib cryptokit yojson lmdb zlib ];
installPhase = ''
mkdir -p $out/bin
cp pijul $out/bin/
'';
meta = with stdenv.lib; {
homepage = https://pijul.org/;
description = "Fast DVCS based on a categorical theory of patches";
license = licenses.gpl3;
platforms = stdenv.lib.platforms.unix;
maintainers = with maintainers; [ puffnfresh ];
};
}

View File

@ -17,11 +17,11 @@ let
optional = stdenv.lib.optional; optional = stdenv.lib.optional;
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
name = "obs-studio-${version}"; name = "obs-studio-${version}";
version = "0.11.1"; version = "0.12.0";
src = fetchurl { src = fetchurl {
url = "https://github.com/jp9000/obs-studio/archive/${version}.tar.gz"; url = "https://github.com/jp9000/obs-studio/archive/${version}.tar.gz";
sha256 = "12g1y6y8ixvgvwk75x7qgq0j06d5khd0w3if6kahswlc58q65fm8"; sha256 = "0nkfzy9wzsy7y0r02vc0648gx2aa6f7ibahrv89hxqr4x6x8d7di";
}; };
buildInputs = [ cmake buildInputs = [ cmake

View File

@ -1,7 +1,7 @@
{ stdenv, fetchurl, pythonPackages, intltool, libxml2Python, curl, python { stdenv, fetchurl, pythonPackages, intltool, libxml2Python, curl, python
, wrapGAppsHook, virtinst, pyGtkGlade, pythonDBus, gnome_python, gtkvnc, vte , wrapGAppsHook, virtinst, pyGtkGlade, pythonDBus, gnome_python, gtkvnc, vte
, gtk3, gobjectIntrospection, libvirt-glib, gsettings_desktop_schemas, glib , gtk3, gobjectIntrospection, libvirt-glib, gsettings_desktop_schemas, glib
, avahi, dconf, spiceSupport ? true, spice_gtk, libosinfo, gnome3 , avahi, dconf, spiceSupport ? true, spice_gtk, libosinfo, gnome3, system-libvirt
}: }:
with stdenv.lib; with stdenv.lib;
@ -40,6 +40,10 @@ buildPythonPackage rec {
dconf dconf
]; ];
patchPhase = ''
sed -i 's|/usr/share/libvirt/cpu_map.xml|${system-libvirt}/share/libvirt/cpu_map.xml|g' virtinst/capabilities.py
'';
configurePhase = '' configurePhase = ''
sed -i 's/from distutils.core/from setuptools/g' setup.py sed -i 's/from distutils.core/from setuptools/g' setup.py
sed -i 's/from distutils.command.install/from setuptools.command.install/g' setup.py sed -i 's/from distutils.command.install/from setuptools.command.install/g' setup.py

View File

@ -5,11 +5,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "i3-${version}"; name = "i3-${version}";
version = "4.10.4"; version = "4.11";
src = fetchurl { src = fetchurl {
url = "http://i3wm.org/downloads/${name}.tar.bz2"; url = "http://i3wm.org/downloads/${name}.tar.bz2";
sha256 = "0pk580jkv7cxmsrr276q25fgdbrkzldiiz4ny61szzmqqnjsfkyx"; sha256 = "0bwqklb6irgjmgvj7mlyz4brr4lggfm3zqmvclvxcbyrzc31xkkq";
}; };
buildInputs = [ buildInputs = [

View File

@ -2,13 +2,13 @@
buildPythonPackage rec { buildPythonPackage rec {
name = "qtile-${version}"; name = "qtile-${version}";
version = "0.10.1"; version = "0.10.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "qtile"; owner = "qtile";
repo = "qtile"; repo = "qtile";
rev = "v${version}"; rev = "v${version}";
sha256 = "1g02lvk2cqy6w6y6nw6dnsmy4i9k4fyawyibpkf0a7a1nfrd6a99"; sha256 = "0dhdwjr4pdlzli68fa8glrnsjzxp6agdab9cnmpsqlwiwh97x9a6";
}; };
patches = [ ./restart_executable.patch ]; patches = [ ./restart_executable.patch ];

View File

@ -1,61 +1,48 @@
{ nixpkgs, nixpkgs_i686, system { nixpkgs, nixpkgs_i686, system
} : } :
{ name, pkgs ? [], profile ? "" { name, profile ? ""
, targetPkgs ? null, multiPkgs ? null , pkgs ? null, targetPkgs ? pkgs: [], multiPkgs ? pkgs: []
, extraBuildCommands ? "", extraBuildCommandsMulti ? "" , extraBuildCommands ? "", extraBuildCommandsMulti ? ""
}: }:
assert pkgs != [] -> targetPkgs == null && multiPkgs == null;
assert targetPkgs != null -> multiPkgs != null;
assert multiPkgs != null -> targetPkgs != null;
assert targetPkgs != null -> pkgs == [];
# HOWTO: # HOWTO:
# If pkgs is defined buildFHSEnv will run in legacy mode. This means # All packages (most likely programs) returned from targetPkgs will only be
# it will build all pkgs contained in pkgs and basePkgs and then just merge # installed once--matching the host's architecture (64bit on x86_64 and 32bit on
# all of their contents together via buildEnv. # x86).
# #
# The new way is to define both targetPkgs and multiPkgs. These two are # Packages (most likely libraries) returned from multiPkgs are installed
# functions which get a pkgs environment supplied and should then return a list # once on x86 systems and twice on x86_64 systems.
# of packages based this environment. # On x86 they are merged with packages from targetPkgs.
# For example: targetPkgs = pkgs: [ pkgs.nmap ]; # On x86_64 they are added to targetPkgs and in addition their 32bit
# # versions are also installed. The final directory structure looks as
# All packages (most likely programs) placed in targetPkgs will only be # follows:
# installed once--matching the hosts architecture (64bit on x86_64 and 32bit on # /lib32 will include 32bit libraries from multiPkgs
# x86). These packages will populate the chroot directory tree.
#
# Packages (most likeley libraries) defined in multiPkgs will be installed once
# on x86 systems and twice on x86_64 systems.
# On x86 they will just be merge with the packages defined in targetPkgs.
# On x86_64 they will be added to targetPkgs and in addition their 32bit
# versions will also be installed. The final directory should look as follows:
# /lib will include 32bit libraries from multiPkgs
# /lib32 will link to /lib
# /lib64 will include 64bit libraries from multiPkgs and targetPkgs # /lib64 will include 64bit libraries from multiPkgs and targetPkgs
# /x86 will contain a complete 32bit environment composed by multiPkgs # /lib will link to /lib32
let let
is64Bit = system == "x86_64-linux"; isMultiBuild = pkgs == null && multiPkgs != null && system == "x86_64-linux";
# enable multi builds on x86_64 hosts if pakgs_target/multi are defined
isMultiBuild = is64Bit && targetPkgs != null;
isTargetBuild = !isMultiBuild; isTargetBuild = !isMultiBuild;
# list of packages (usually programs) which will only be installed for the # support deprecated "pkgs" option.
# hosts architecture targetPkgs' =
targetPaths = if targetPkgs == null if pkgs != null
then pkgs then builtins.trace "buildFHSEnv: 'pkgs' option is deprecated, use 'targetPkgs'" (pkgs': pkgs)
else targetPkgs nixpkgs ++ multiPkgs nixpkgs; else targetPkgs;
# list of pckages which should be build for both x86 and x86_64 on x86_64 # list of packages (usually programs) which are only be installed for the
# host's architecture
targetPaths = targetPkgs' nixpkgs ++ (if multiPkgs == null then [] else multiPkgs nixpkgs);
# list of packages which are installed for both x86 and x86_64 on x86_64
# systems # systems
multiPaths = if isMultiBuild multiPaths = if isMultiBuild
then multiPkgs nixpkgs_i686 then multiPkgs nixpkgs_i686
else []; else [];
# base packages of the chroot # base packages of the chroot
# these match the hosts architecture, gcc/glibc_multi will be choosen # these match the host's architecture, gcc/glibc_multi are used for multilib
# on multi builds # builds.
chosenGcc = if isMultiBuild then nixpkgs.gcc_multi else nixpkgs.gcc; chosenGcc = if isMultiBuild then nixpkgs.gcc_multi else nixpkgs.gcc;
basePkgs = with nixpkgs; basePkgs = with nixpkgs;
[ (if isMultiBuild then glibc_multi else glibc) [ (if isMultiBuild then glibc_multi else glibc)
@ -65,6 +52,14 @@ let
gnutar gzip bzip2 xz glibcLocales gnutar gzip bzip2 xz glibcLocales
]; ];
etcProfile = nixpkgs.writeText "profile" ''
export PS1='${name}-chrootenv:\u@\h:\w\$ '
export LOCALE_ARCHIVE='/usr/lib${if isMultiBuild then "64" else ""}/locale/locale-archive'
export LD_LIBRARY_PATH=/run/opengl-driver/lib:/run/opengl-driver-32/lib:/lib:/lib64
export PATH='/usr/bin:/usr/sbin'
${profile}
'';
# Compose /etc for the chroot environment # Compose /etc for the chroot environment
etcPkg = nixpkgs.stdenv.mkDerivation { etcPkg = nixpkgs.stdenv.mkDerivation {
name = "${name}-chrootenv-etc"; name = "${name}-chrootenv-etc";
@ -73,13 +68,7 @@ let
cd $out/etc cd $out/etc
# environment variables # environment variables
cat >> profile << "EOF" ln -s ${etcProfile} profile
export PS1='${name}-chrootenv:\u@\h:\w\$ '
export LOCALE_ARCHIVE='/usr/lib${if is64Bit then "64" else ""}/locale/locale-archive'
export LD_LIBRARY_PATH=/run/opengl-driver/lib:/run/opengl-driver-32/lib:/lib:/lib32:/lib64
export PATH='/bin:/sbin'
${profile}
EOF
# compatibility with NixOS # compatibility with NixOS
ln -s /host-etc/static static ln -s /host-etc/static static
@ -109,10 +98,13 @@ let
# symlink SSL certs # symlink SSL certs
mkdir -p ssl mkdir -p ssl
ln -s /host-etc/ssl/certs ssl/certs ln -s /host-etc/ssl/certs ssl/certs
# symlink /etc/mtab -> /proc/mounts (compat for old userspace progs)
ln -s /proc/mounts mtab
''; '';
}; };
# Composes a /usr like directory structure # Composes a /usr-like directory structure
staticUsrProfileTarget = nixpkgs.buildEnv { staticUsrProfileTarget = nixpkgs.buildEnv {
name = "${name}-usr-target"; name = "${name}-usr-target";
paths = [ etcPkg ] ++ basePkgs ++ targetPaths; paths = [ etcPkg ] ++ basePkgs ++ targetPaths;
@ -125,76 +117,61 @@ let
ignoreCollisions = true; ignoreCollisions = true;
}; };
linkProfile = profile: ''
for i in ${profile}/{bin,sbin,share,var,etc}; do
if [ -x "$i" ]
then
ln -s "$i"
fi
done
'';
# this will happen on x86_64 host:
# /x86 -> links to the whole profile defined by multiPaths
# /lib, /lib32 -> links to 32bit binaries
# /lib64 -> links to 64bit binaries
# /usr/lib* -> same as above
setupMultiProfile = if isTargetBuild then "" else ''
mkdir -m0755 x86
cd x86
${linkProfile staticUsrProfileMulti}
cd ..
'';
# setup library paths only for the targeted architecture # setup library paths only for the targeted architecture
setupLibDirs_target = '' setupLibDirs_target = ''
mkdir -m0755 lib mkdir -m0755 lib
# copy content of targetPaths # copy content of targetPaths
cp -rsf ${staticUsrProfileTarget}/lib/* lib/ cp -rsHf ${staticUsrProfileTarget}/lib/* lib/
''; '';
# setup /lib, /lib32 and /lib64 # setup /lib, /lib32 and /lib64
setupLibDirs_multi = '' setupLibDirs_multi = ''
mkdir -m0755 lib mkdir -m0755 lib32
mkdir -m0755 lib64 mkdir -m0755 lib64
ln -s lib lib32 ln -s lib32 lib
# copy glibc stuff # copy glibc stuff
cp -rsf ${staticUsrProfileTarget}/lib/32/* lib/ && chmod u+w -R lib/ cp -rsHf ${staticUsrProfileTarget}/lib/32/* lib32/ && chmod u+w -R lib32/
# copy content of multiPaths (32bit libs) # copy content of multiPaths (32bit libs)
[ -d ${staticUsrProfileMulti}/lib ] && cp -rsf ${staticUsrProfileMulti}/lib/* lib/ && chmod u+w -R lib/ [ -d ${staticUsrProfileMulti}/lib ] && cp -rsHf ${staticUsrProfileMulti}/lib/* lib32/ && chmod u+w -R lib32/
# copy content of targetPaths (64bit libs) # copy content of targetPaths (64bit libs)
cp -rsf ${staticUsrProfileTarget}/lib/* lib64/ && chmod u+w -R lib64/ cp -rsHf ${staticUsrProfileTarget}/lib/* lib64/ && chmod u+w -R lib64/
# most 64bit only libs put their stuff into /lib # most 64bit only libs put their stuff into /lib
# some pkgs (like gcc_multi) put 32bit libs into and /lib 64bit libs into /lib64 # some pkgs (like gcc_multi) put 32bit libs into /lib and 64bit libs into /lib64
# by overwriting these we will hopefully catch all these cases # by overwriting these we will hopefully catch all these cases
# in the end /lib should only contain 32bit and /lib64 only 64bit libs # in the end /lib32 should only contain 32bit and /lib64 only 64bit libs
cp -rsf ${staticUsrProfileTarget}/lib64/* lib64/ && chmod u+w -R lib64/ cp -rsHf ${staticUsrProfileTarget}/lib64/* lib64/ && chmod u+w -R lib64/
# copy gcc libs (and may overwrite exitsting wrongly placed libs) # copy gcc libs
cp -rsf ${chosenGcc.cc}/lib/* lib/ cp -rsHf ${chosenGcc.cc}/lib/* lib32/
cp -rsf ${chosenGcc.cc}/lib64/* lib64/ cp -rsHf ${chosenGcc.cc}/lib64/* lib64/
''; '';
setupLibDirs = if isTargetBuild then setupLibDirs_target setupLibDirs = if isTargetBuild then setupLibDirs_target
else setupLibDirs_multi; else setupLibDirs_multi;
# the target profile is the actual profile that will be used for the chroot # the target profile is the actual profile that will be used for the chroot
setupTargetProfile = '' setupTargetProfile = ''
${linkProfile staticUsrProfileTarget}
${setupLibDirs}
mkdir -m0755 usr mkdir -m0755 usr
cd usr cd usr
${linkProfile staticUsrProfileTarget}
${setupLibDirs} ${setupLibDirs}
for i in bin sbin share include; do
cp -r "${staticUsrProfileTarget}/$i" $i
done
cd .. cd ..
rm -rf usr/etc usr/var
for i in var etc; do
cp -r "${staticUsrProfileTarget}/$i" "$i"
done
for i in usr/{bin,sbin,lib,lib32,lib64}; do
if [ -x "$i" ]; then
ln -s "$i"
fi
done
''; '';
in nixpkgs.stdenv.mkDerivation { in nixpkgs.stdenv.mkDerivation {
@ -203,7 +180,6 @@ in nixpkgs.stdenv.mkDerivation {
mkdir -p $out mkdir -p $out
cd $out cd $out
${setupTargetProfile} ${setupTargetProfile}
${setupMultiProfile}
cd $out cd $out
${extraBuildCommands} ${extraBuildCommands}
cd $out cd $out

View File

@ -33,7 +33,7 @@ let
grKernel = if cfg.stable grKernel = if cfg.stable
then mkKernel pkgs.linux_3_14 stable-patch then mkKernel pkgs.linux_3_14 stable-patch
else mkKernel pkgs.linux_4_1 test-patch; else mkKernel pkgs.linux_4_2 test-patch;
## -- grsecurity configuration --------------------------------------------- ## -- grsecurity configuration ---------------------------------------------

View File

@ -0,0 +1,57 @@
{stdenv, fetchurl, unzip, lib }:
let
fonts = {
aegean = { version = "8.00"; file = "Aegean.zip"; sha256 = "09pmazcpxhkx3l8h4gxiixihi1c49pli5gvlcm1b6sbf4xvf9kwm";
description = "Scripts and symbols of the Aegean world"; };
textfonts = { version = "6.00"; file = "Textfonts.zip"; sha256 = "10m6kpyj8cc0b4qxxi78akiyjxcbhxj2wmbicdcfh008jibbaxsz";
description = "Fonts based on early Greek editions"; };
symbola = { version = "8.00"; file = "Symbola.zip"; sha256 = "1lfs2j816332ysvpb5ibj2gwpmyqyispqdl7skkshf2gra18hmhd";
description = "Basic Latin, Greek, Cyrillic and many Symbol blocks of Unicode"; };
aegyptus = { version = "6.00"; file = "Aegyptus.zip"; sha256 = "092vci45wp9x0yky6dcfky4bs4avaxn6xpai3bs74gxskd2j9s3q";
description = "Egyptian Hieroglyphs, Coptic, Meroitic"; };
akkadian = { version = "7.13"; file = "Akkadian.zip"; sha256 = "1jd2fb6jnwpdwgkidsi2pnw0nk2cpya8k85299w591sqslfkxyij";
description = "Sumero-Akkadian Cuneiform"; };
anatolian = { version = "5.02"; file = "Anatolian.zip"; sha256 = "0arm58sijzk0bqmfb70k1sjvq79wgw16hx3j2g4l8qz4sv05bp8l";
description = "Anatolian Hieroglyphs"; };
maya = { version = "4.14"; file = "Maya.zip"; sha256 = "0l97racgncrhb96mfbsx8dr5n4j289iy0nnwhxf9b21ns58a9x4f";
description = "Maya Hieroglyphs"; };
unidings = { version = "8.00"; file = "Unidings.zip"; sha256 = "1i0z3mhgj4680188lqpmk7rx3yiz4l7yybb4wq6zk35j75l28irm";
description = "Glyphs and Icons for blocks of The Unicode Standard"; };
musica = { version = "3.12"; file = "Musica.zip"; sha256 = "079vyb0mpxvlcf81d5pqh9dijkcvidfbcyvpbgjpmgzzrrj0q210";
description = "Musical Notation"; };
analecta = { version = "5.00"; file = "Analecta.zip"; sha256 = "0rphylnz42fqm1zpx5jx60k294kax3sid8r2hx3cbxfdf8fnpb1f";
description = "Coptic, Gothic, Deseret"; };
};
mkpkg = name_: {version, file, sha256, description}:
stdenv.mkDerivation rec {
name = "${name_}-${version}";
src = fetchurl {
url = "http://users.teilar.gr/~g1951d/${file}";
inherit sha256;
};
buildInputs = [ unzip ];
sourceRoot = ".";
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp -v *.ttf $out/share/fonts/truetype/
mkdir -p "$out/doc/${name}"
cp -v *.docx *.pdf *.xlsx "$out/doc/${name}/"
'';
meta = {
inherit description;
# In lieu of a license:
# Fonts in this site are offered free for any use;
# they may be installed, embedded, opened, edited, modified, regenerated, posted, packaged and redistributed.
license = stdenv.lib.licenses.free;
homepage = http://users.teilar.gr/~g1951d/;
};
};
in
lib.mapAttrs mkpkg fonts

View File

@ -0,0 +1,36 @@
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "hanazono-${version}";
version = "20141012";
src = fetchurl {
url = "mirror://sourceforgejp/hanazono-font/62072/hanazono-20141012.zip";
sha256 = "020jhqnzm9jvkmfvvyk1my26ncwxbnb9yc8v7am252jwrifji9q6";
};
buildInputs = [ unzip ];
sourceRoot = ".";
installPhase = ''
mkdir -p $out/share/fonts/hanazono
cp *.ttf $out/share/fonts/hanazono
mkdir -p $out/share/doc/hanazono
cp *.txt $out/share/doc/hanazono
'';
meta = with stdenv.lib; {
description = "Free kanji font containing 96,327 characters";
homepage = http://fonts.jp/hanazono/;
# Dual-licensed under OFL and the following:
# This font is a free software.
# Unlimited permission is granted to use, copy, and distribute it, with
# or without modification, either commercially and noncommercially.
# THIS FONT IS PROVIDED "AS IS" WITHOUT WARRANTY.
license = [ licenses.ofl licenses.free ];
maintainers = with maintainers; [ mathnerd314 ];
platforms = platforms.all;
};
}

View File

@ -0,0 +1,26 @@
{stdenv, fetchurl, unzip}:
stdenv.mkDerivation rec {
name = "kawkab-mono-20151015";
src = fetchurl {
url = "http://makkuk.com/kawkab-mono/downloads/kawkab-mono-0.1.zip";
sha256 = "16pv9s4q7199aacbzfi2d10rcrq77vyfvzcy42g80nhfrkz1cb0m";
};
buildInputs = [ unzip ];
sourceRoot = ".";
installPhase = ''
mkdir -p $out/share/fonts/truetype
cp *.ttf $out/share/fonts/truetype
'';
meta = {
description = "An arab fixed-width font";
homepage = "http://makkuk.com/kawkab-mono/";
license = stdenv.lib.licenses.ofl;
};
}

View File

@ -1,22 +1,58 @@
{ stdenv, fetchurl }: { stdenv, fetchurl, lib }:
let
fonts = {
assamese = { version = "2.91.3" ; sha256 = "0kbdvi8f7vbvsain9zmnj9h43a6bmdkhk5c2wzg15100w7wf6lpq"; };
bengali = { version = "2.91.3" ; sha256 = "1wdd2dkqaflf6nm5yc7llkfxin6g0zb2sbcd5g2xbrl0gwwcmkij"; };
devanagari = { version = "2.95.2" ; sha256 = "1ss0j0pcfrg1vsypnm0042y4bn7b84mi6lbfsvr6rs89lb5swvn2"; };
gujarati = { version = "2.92.2-and-4.2.2" ; sha256 = "1i27yjhn3x31a89x1hjs6rskdwp2kh0hibq1xiz3rgqil2m0jar6"; };
gurmukhi = { version = "2.91.0" ; sha256 = "0z8a30mnyhlfvqhnggfk0369hqg779ihqyhcmpxj0sf9dmb1i0mj"; }; # renamed from Punjabi
kannada = { version = "2.5.3" ; sha256 = "1x9fb5z1bwmfi0y1fdnzizzjxhbxp272wxznx36063kjf25bb9pi"; };
malayalam = { version = "2.92.0" ; sha256 = "1syv1irxh5xl0z0d5kwankhlmi7s2dg4wpp58nq0mkd3rhm5q8qw"; };
marathi = { version = "2.94.0" ; sha256 = "0y9sca6gbfbafv52v0n2r1xfs8rg6zmqs4vp9sjfc1c6yqhzagl4"; };
nepali = { version = "2.94.0" ; sha256 = "0c56141rpxc30581i3gisg8kfaadxhqjhgshni6g7a7rn6l4dx17"; };
odia = { version = "2.91.0" ; sha256 = "15iz9kdf9k5m8wcn2iqlqjm758ac3hvnk93va6kac06frxnhw9lp"; }; # renamed from Oriya
tamil-classical = { version = "2.5.3" ; sha256 = "0ci4gk8qhhysjza69nncgmqmal8s4n8829icamvlzbmjdd4s2pij"; };
tamil = { version = "2.91.1" ; sha256 = "1ir6kjl48apwk41xbpj0x458k108s7i61yzpkfhqcy1fkcr7cngj"; };
telugu = { version = "2.5.4" ; sha256 = "06gdba7690y20l7nsi8fnnimim5hlq7hik0mpk2fzw4w39hjybk9"; };
};
gplfonts = {
# GPL fonts removed from later releases
kashmiri = { version = "2.4.3" ; sha256 = "0ax8xzv4pz17jnsjdklawncsm2qn7176wbxykswygpzdd5lr0gg9"; };
konkani = { version = "2.4.3" ; sha256 = "03zc27z26a60aaggrqx4d6l0jgggciq8p83v6vgg0k6l3apvcp45"; };
maithili = { version = "2.4.3" ; sha256 = "0aqwnhq1namvvb77f2vssahixqf4xay7ja4q8qc312wxkajdqh4a"; };
sindhi = { version = "2.4.3" ; sha256 = "00imfbn01yc2g5zdyydks9w3ndkawr66l9qk2idlvw3yz3sw2kf1"; };
};
mkpkg = license: name: {version, sha256}:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "lohit-fonts-20140220"; name = "lohit-${name}-${version}";
src = fetchurl { src = fetchurl {
url = https://fedorahosted.org/releases/l/o/lohit/lohit-ttf-20140220.tar.gz; url = "https://fedorahosted.org/releases/l/o/lohit/lohit-${name}-ttf-${version}.tar.gz";
sha256 = "1rmgr445hw1n851ywy28csfvswz1i6hnc8mzp88qw2xk9j4dn32d"; inherit sha256;
}; };
installPhase = '' installPhase = ''
mkdir -p $out/share/fonts/truetype mkdir -p $out/share/fonts/truetype
cp *.ttf $out/share/fonts/truetype cp -v *.ttf $out/share/fonts/truetype/
mkdir -p $out/etc/fonts/conf.d
cp -v *.conf $out/etc/fonts/conf.d
mkdir -p "$out/share/doc/lohit-${name}"
cp -v ChangeLog* COPYRIGHT* "$out/share/doc/lohit-${name}/"
''; '';
meta = with stdenv.lib; { meta = {
inherit license;
homepage = https://fedorahosted.org/lohit/; homepage = https://fedorahosted.org/lohit/;
description = "Fonts for 21 Indian languages"; maintainers = [ lib.maintainers.mathnerd314 lib.maintainers.ttuegel ];
license = licenses.ofl; # Set a non-zero priority to allow easy overriding of the
maintainers = [ maintainers.ttuegel ]; # fontconfig configuration files.
platforms = platforms.all; priority = 5;
}; };
} };
in
# Technically, GPLv2 with usage exceptions
lib.mapAttrs (mkpkg lib.licenses.gpl2) gplfonts //
lib.mapAttrs (mkpkg lib.licenses.ofl) fonts

View File

@ -0,0 +1,30 @@
{ stdenv, fetchurl, p7zip }:
stdenv.mkDerivation rec {
name = "marathi-cursive-${version}";
version = "1.2";
src = fetchurl {
url = "https://github.com/MihailJP/MarathiCursive/releases/download/${version}/MarathiCursive-${version}.7z";
sha256 = "0zhqkkfkz5mhfz8xv305s16h80p9v1iva829fznxd2c44ngyplmc";
};
buildInputs = [ p7zip ];
unpackCmd = "7z x $curSrc";
installPhase = ''
mkdir -p $out/share/fonts/marathi-cursive
cp -v *.otf *.ttf $out/share/fonts/marathi-cursive
mkdir -p $out/share/doc/${name}
cp -v README *.txt $out/share/doc/${name}
'';
meta = with stdenv.lib; {
homepage = https://github.com/MihailJP/marathi-cursive;
description = "Modi script font with Graphite and OpenType support";
maintainers = with maintainers; [ mathnerd314 ];
license = licenses.mit; # It's the M+ license, M+ is MIT(-ish)
platforms = platforms.all;
};
}

View File

@ -0,0 +1,20 @@
{ lib, runCommand, fetchurl }:
runCommand "mro-unicode-2013-05-25" {
src = fetchurl {
url = "https://github.com/phjamr/MroUnicode/raw/master/MroUnicode-Regular.ttf";
sha256 = "1za74ych0sh97ks6qp9iqq9jankgnkrq65s350wsbianwi72di45";
};
meta = with lib; {
homepage = https://github.com/phjamr/MroUnicode;
description = "Unicode-compliant Mro font";
maintainers = with maintainers; [ mathnerd314 ];
license = licenses.ofl;
platforms = platforms.all;
};
}
''
mkdir -p $out/share/fonts/truetype
cp $src $out/share/fonts/truetype/MroUnicode-Regular.ttf
''

View File

@ -0,0 +1,30 @@
{ stdenv, fetchurl, p7zip }:
stdenv.mkDerivation rec {
name = "oldsindhi-${version}";
version = "0.1";
src = fetchurl {
url = "https://github.com/MihailJP/oldsindhi/releases/download/0.1/OldSindhi-0.1.7z";
sha256 = "1sbmxyxi81k88hkfw7gnnpgd5vy2vyj5y5428cd6nz4zlaclgq8z";
};
buildInputs = [ p7zip ];
unpackCmd = "7z x $curSrc";
installPhase = ''
mkdir -p $out/share/fonts/truetype
mkdir -p $out/share/doc/${name}
cp -v *.ttf $out/share/fonts/truetype/
cp -v README *.txt $out/share/doc/${name}
'';
meta = with stdenv.lib; {
homepage = https://github.com/MihailJP/oldsindhi;
description = "Free Sindhi Khudabadi font";
maintainers = with maintainers; [ mathnerd314 ];
license = licenses.bsd2;
platforms = platforms.all;
};
}

View File

@ -0,0 +1,36 @@
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "paratype-pt-mono";
src = fetchurl rec {
url = "http://www.paratype.ru/uni/public/PTMono.zip";
sha256 = "1wqaai7d6xh552vvr5svch07kjn1q89ab5jimi2z0sbd0rbi86vl";
};
buildInputs = [unzip];
phases = "unpackPhase installPhase";
sourceRoot = ".";
installPhase = ''
mkdir -p $out/share/fonts/truetype
mkdir -p $out/share/doc/paratype
cp *.ttf $out/share/fonts/truetype
cp *.txt $out/share/doc/paratype
'';
meta = with stdenv.lib; {
homepage = "http://www.paratype.ru/public/";
description = "An open Paratype font";
license = "Open Paratype license";
# no commercial distribution of the font on its own
# must rename on modification
# http://www.paratype.ru/public/pt_openlicense.asp
platforms = platforms.all;
maintainers = with maintainers; [ raskin ];
};
}

View File

@ -0,0 +1,36 @@
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "paratype-pt-sane";
src = fetchurl rec {
url = "http://www.paratype.ru/uni/public/PTSans.zip";
sha256 = "1j9gkbqyhxx8pih5agr9nl8vbpsfr9vdqmhx73ji3isahqm3bhv5";
};
buildInputs = [unzip];
phases = "unpackPhase installPhase";
sourceRoot = ".";
installPhase = ''
mkdir -p $out/share/fonts/truetype
mkdir -p $out/share/doc/paratype
cp *.ttf $out/share/fonts/truetype
cp *.txt $out/share/doc/paratype
'';
meta = with stdenv.lib; {
homepage = "http://www.paratype.ru/public/";
description = "An open Paratype font";
license = "Open Paratype license";
# no commercial distribution of the font on its own
# must rename on modification
# http://www.paratype.ru/public/pt_openlicense.asp
platforms = platforms.all;
maintainers = with maintainers; [ raskin ];
};
}

View File

@ -0,0 +1,36 @@
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "paratype-pt-serif";
src = fetchurl rec {
url = "http://www.paratype.ru/uni/public/PTSerif.zip";
sha256 = "0x3l58c1rvwmh83bmmgqwwbw9av1mvvq68sw2hdkyyihjvamyvvs";
};
buildInputs = [unzip];
phases = "unpackPhase installPhase";
sourceRoot = ".";
installPhase = ''
mkdir -p $out/share/fonts/truetype
mkdir -p $out/share/doc/paratype
cp *.ttf $out/share/fonts/truetype
cp *.txt $out/share/doc/paratype
'';
meta = with stdenv.lib; {
homepage = "http://www.paratype.ru/public/";
description = "An open Paratype font";
license = "Open Paratype license";
# no commercial distribution of the font on its own
# must rename on modification
# http://www.paratype.ru/public/pt_openlicense.asp
platforms = platforms.all;
maintainers = with maintainers; [ raskin ];
};
}

View File

@ -0,0 +1,20 @@
{ lib, runCommand, fetchurl }:
runCommand "sampradaya-2015-05-26" {
src = fetchurl {
url = "https://bitbucket.org/OorNaattaan/sampradaya/raw/afa9f7c6ab17e14bd7dd74d0acaec2f75454dfda/Sampradaya.ttf";
sha256 = "0110k1yh5kz3f04wp72bfz59pxjc7p6jv7m5p0rqn1kqbf7g3pck";
};
meta = with lib; {
homepage = https://bitbucket.org/OorNaattaan/sampradaya/;
description = "Unicode-compliant Grantha font";
maintainers = with maintainers; [ mathnerd314 ];
license = licenses.ofl; # See font metadata
platforms = platforms.all;
};
}
''
mkdir -p $out/share/fonts/truetype
cp $src $out/share/fonts/truetype/Sampradaya.ttf
''

View File

@ -0,0 +1,28 @@
{ lib, runCommand, fetchurl }:
runCommand "signwriting-1.1.4" {
src1 = fetchurl {
url = "https://github.com/Slevinski/signwriting_2010_fonts/raw/61c8e7123a1168657b5d34d85266a637f67b9d2b/fonts/SignWriting%202010.ttf";
name = "SignWriting_2010.ttf";
sha256 = "1abjzykbjx2hal8mrxp51rvblv3q84akyn9qhjfaj20rwphkf5zj";
};
src2 = fetchurl {
url = "https://github.com/Slevinski/signwriting_2010_fonts/raw/61c8e7123a1168657b5d34d85266a637f67b9d2b/fonts/SignWriting%202010%20Filling.ttf";
name = "SignWriting_2010_Filling.ttf";
sha256 = "0am5wbf7jdy9szxkbsc5f3959cxvbj7mr0hy1ziqmkz02c6xjw2m";
};
meta = with lib; {
homepage = https://github.com/Slevinski/signwriting_2010_fonts;
description = "Typeface for written sign languages";
maintainers = with maintainers; [ mathnerd314 ];
license = licenses.ofl;
platforms = platforms.all;
};
}
''
mkdir -p $out/share/fonts/truetype
cp $src1 $out/share/fonts/truetype/SignWriting_2010.ttf
cp $src2 $out/share/fonts/truetype/SignWriting_2010_Filling.ttf
''

View File

@ -1,39 +0,0 @@
{stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "symbola-8.00";
src = fetchurl {
url = "http://users.teilar.gr/~g1951d/Symbola.zip";
sha256 = "07bczpl3vqdpg2gakfddhzzgpb6v2wpasv7rwqxkyg9yd9lmbr0s";
};
docs_pdf = fetchurl {
url = "http://users.teilar.gr/~g1951d/Symbola.pdf";
sha256 = "1zmq1ijl0k5hrc6vpa2xp9n1x2zrrd7ng3jwc9yf0qsi3pmkpk0p";
};
buildInputs = [ unzip ];
phases = [ "installPhase" ];
installPhase = ''
unzip ${src}
mkdir -p $out/share/fonts/truetype
cp -v Symbola.ttf $out/share/fonts/truetype/
cp -v Symbola_hint.ttf $out/share/fonts/truetype/
mkdir -p "$out/doc/${name}"
cp -v Symbola.docx "$out/doc/${name}/"
cp -v Symbola.htm "$out/doc/${name}/"
cp -v "$docs_pdf" "$out/doc/${name}/${docs_pdf.name}"
'';
meta = {
description = "Basic Latin, Greek, Cyrillic and many Symbol blocks of Unicode";
# In lieu of a license:
# Fonts in this site are offered free for any use;
# they may be installed, embedded, opened, edited, modified, regenerated, posted, packaged and redistributed.
license = stdenv.lib.licenses.free;
homepage = http://users.teilar.gr/~g1951d/;
};
}

View File

@ -0,0 +1,25 @@
{ lib, runCommand, fetchurl }:
{
tai-ahom = runCommand "tai-ahom-2015-07-06" {
src = fetchurl {
url = "https://github.com/enabling-languages/tai-languages/blob/b57a3ea4589af69bb8e87c6c4bb7cd367b52f0b7/ahom/.fonts/ttf/.original/AhomUnicode_FromMartin.ttf?raw=true";
sha256 = "0zpjsylm29qc3jdv5kv0689pcirai46j7xjp5dppi0fmzxaxqnsk";
};
meta = with lib; {
homepage = https://github.com/enabling-languages/tai-languages;
description = "Unicode-compliant Tai Ahom font";
maintainers = with maintainers; [ mathnerd314 ];
license = licenses.ofl; # See font metadata
platforms = platforms.all;
};
}
''
mkdir -p $out/share/fonts/truetype
cp $src $out/share/fonts/truetype/AhomUnicode.ttf
'';
# TODO: package others (Khamti Shan, Tai Aiton, Tai Phake, and/or Assam Tai)
}

View File

@ -0,0 +1,29 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "unifont_upper-${version}";
version = "8.0.01";
ttf = fetchurl {
url = "http://unifoundry.com/pub/unifont-8.0.01/font-builds/${name}.ttf";
sha256 = "0ffqm85bk345pnql1x0rbg0z31472y844xibb27njjg4avb21lga";
};
phases = "installPhase";
installPhase =
''
mkdir -p $out/share/fonts/truetype
cp -v ${ttf} $out/share/fonts/truetype/unifont_upper.ttf
'';
meta = with stdenv.lib; {
description = "Unicode font for glyphs above the Unicode Basic Multilingual Plane";
homepage = http://unifoundry.com/unifont.html;
# Basically GPL2+ with font exception.
license = http://unifoundry.com/LICENSE.txt;
maintainers = [ maintainers.mathnerd314 ];
platforms = platforms.all;
};
}

View File

@ -8,7 +8,7 @@ let
# Annoyingly, these files are updated without a change in URL. This means that # Annoyingly, these files are updated without a change in URL. This means that
# builds will start failing every month or so, until the hashes are updated. # builds will start failing every month or so, until the hashes are updated.
version = "2015-10-13"; version = "2015-10-19";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "geolite-legacy-${version}"; name = "geolite-legacy-${version}";
@ -27,10 +27,10 @@ stdenv.mkDerivation {
"0jdgfcy90mk7q25rhb8ymnddkskmp2cmyzmbjr3ij0zvbbpzxl4i"; "0jdgfcy90mk7q25rhb8ymnddkskmp2cmyzmbjr3ij0zvbbpzxl4i";
srcGeoIPASNum = fetchDB srcGeoIPASNum = fetchDB
"asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz"
"0j73lw2i6nnx1mgp1hspfa95zca5h0hqj12g16rln7pss868wnwi"; "1qz3hw4n3rs1c94iixshp0sq2rppk8aklp3al9r136kjp4cswbzc";
srcGeoIPASNumv6 = fetchDB srcGeoIPASNumv6 = fetchDB
"asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz"
"1id4rkxp5pppr274y276w2zmx44dn0h44d4ax780g8cbhlc9n2br"; "1rmagwjnwsz75nscy7zsha6v4gd3lpqk3p8jy448d4g6l3w3ww1s";
meta = with stdenv.lib; { meta = with stdenv.lib; {
inherit version; inherit version;

View File

@ -85,7 +85,7 @@ xfce_self = rec { # the lines are very long but it seems better than the even-od
xfce4_verve_plugin = callPackage ./panel-plugins/xfce4-verve-plugin.nix { }; xfce4_verve_plugin = callPackage ./panel-plugins/xfce4-verve-plugin.nix { };
xfce4_xkb_plugin = callPackage ./panel-plugins/xfce4-xkb-plugin.nix { }; xfce4_xkb_plugin = callPackage ./panel-plugins/xfce4-xkb-plugin.nix { };
xfce4_whiskermenu_plugin = callPackage ./panel-plugins/xfce4-whiskermenu-plugin.nix { };
}; # xfce_self }; # xfce_self

View File

@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig, intltool, libxfce4util, libxfcegui4
, xfce4panel, gtk, exo, garcon }:
with stdenv.lib;
stdenv.mkDerivation rec {
p_name = "xfce4-whiskermenu-plugin";
ver_maj = "1.5";
ver_min = "1";
rev = "18c31a357c102ab38e98ac24c154f9e6187b3ef8";
name = "${p_name}-${ver_maj}.${ver_min}";
src = fetchFromGitHub {
owner = "gottcode";
repo = "xfce4-whiskermenu-plugin";
inherit rev;
sha256 = "442e887877ffc347378c23ded2466ebbfc7aacb6b91fc395b12071320616eb76";
};
buildInputs = [ cmake pkgconfig intltool libxfce4util libxfcegui4 xfce4panel
gtk exo garcon ];
meta = {
homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}";
description = "Whisker Menu is an alternate application launcher for Xfce.";
platforms = platforms.linux;
maintainers = [ maintainers.pjbarnoy ];
};
}

View File

@ -36,22 +36,12 @@
, haddock, hspec, xhtml, primitive, cacert, pkgs , haddock, hspec, xhtml, primitive, cacert, pkgs
, coreutils , coreutils
, libiconv , libiconv
, ghcjsBoot ? import ./ghcjs-boot.nix { inherit fetchgit; }
, shims ? import ./shims.nix { inherit fetchFromGitHub; }
}: }:
let let version = "0.1.0"; in
version = "0.1.0"; mkDerivation (rec {
ghcjsBoot = fetchgit {
url = "git://github.com/ghcjs/ghcjs-boot.git";
rev = "39cd58e12f02fa99f493387ba4c3708819a72294";
sha256 = "0s7hvg60piklrg9ypa7r44l4qzvpinrgsaffak6fr7gd3k08wn9d";
fetchSubmodules = true;
};
shims = fetchFromGitHub {
owner = "ghcjs";
repo = "shims";
rev = "f17d10cf47450fe4e00433e988db0bddddb35cc0";
sha256 = "1kgnkkz1khzkmb0dm0ssp8l17iy9d9n9phszcj6vg9vi7v9y7l05";
};
in mkDerivation (rec {
pname = "ghcjs"; pname = "ghcjs";
inherit version; inherit version;
src = fetchFromGitHub { src = fetchFromGitHub {

View File

@ -0,0 +1,7 @@
{ fetchgit }:
fetchgit {
url = git://github.com/ghcjs/ghcjs-boot.git;
rev = "39cd58e12f02fa99f493387ba4c3708819a72294";
sha256 = "0s7hvg60piklrg9ypa7r44l4qzvpinrgsaffak6fr7gd3k08wn9d";
fetchSubmodules = true;
}

View File

@ -0,0 +1,7 @@
{ fetchFromGitHub }:
fetchFromGitHub {
owner = "ghcjs";
repo = "shims";
rev = "f17d10cf47450fe4e00433e988db0bddddb35cc0";
sha256 = "1kgnkkz1khzkmb0dm0ssp8l17iy9d9n9phszcj6vg9vi7v9y7l05";
}

View File

@ -72,6 +72,8 @@ stdenv.mkDerivation rec {
sed -i '/TestResolveTCPAddr/areturn' src/net/tcp_test.go sed -i '/TestResolveTCPAddr/areturn' src/net/tcp_test.go
sed -i '/TestResolveUDPAddr/areturn' src/net/udp_test.go sed -i '/TestResolveUDPAddr/areturn' src/net/udp_test.go
sed -i '/TestCgoExternalThreadSIGPROF/areturn' src/runtime/crash_cgo_test.go
touch $TMPDIR/group $TMPDIR/hosts $TMPDIR/passwd touch $TMPDIR/group $TMPDIR/hosts $TMPDIR/passwd
''; '';

View File

@ -1,7 +1,7 @@
{ stdenv, lib, fetchurl, tzdata, iana_etc, go_1_4, runCommand { stdenv, lib, fetchurl, tzdata, iana_etc, go_1_4, runCommand
, perl, which, pkgconfig, patch , perl, which, pkgconfig, patch
, pcre , pcre
, Security }: , Security, Foundation }:
let let
goBootstrap = runCommand "go-bootstrap" {} '' goBootstrap = runCommand "go-bootstrap" {} ''
@ -25,7 +25,9 @@ stdenv.mkDerivation rec {
# perl is used for testing go vet # perl is used for testing go vet
nativeBuildInputs = [ perl which pkgconfig patch ]; nativeBuildInputs = [ perl which pkgconfig patch ];
buildInputs = [ pcre ]; buildInputs = [ pcre ];
propagatedBuildInputs = lib.optional stdenv.isDarwin Security; propagatedBuildInputs = lib.optionals stdenv.isDarwin [
Security Foundation
];
# I'm not sure what go wants from its 'src', but the go installation manual # I'm not sure what go wants from its 'src', but the go installation manual
# describes an installation keeping the src. # describes an installation keeping the src.
@ -67,18 +69,26 @@ stdenv.mkDerivation rec {
'' + lib.optionalString stdenv.isLinux '' '' + lib.optionalString stdenv.isLinux ''
sed -i 's,/usr/share/zoneinfo/,${tzdata}/share/zoneinfo/,' src/time/zoneinfo_unix.go sed -i 's,/usr/share/zoneinfo/,${tzdata}/share/zoneinfo/,' src/time/zoneinfo_unix.go
'' + lib.optionalString stdenv.isDarwin '' '' + lib.optionalString stdenv.isDarwin ''
substituteInPlace src/race.bash --replace \
"sysctl machdep.cpu.extfeatures | grep -qv EM64T" true
sed -i 's,strings.Contains(.*sysctl.*,true {,' src/cmd/dist/util.go
sed -i 's,"/etc","'"$TMPDIR"'",' src/os/os_test.go sed -i 's,"/etc","'"$TMPDIR"'",' src/os/os_test.go
sed -i 's,/_go_os_test,'"$TMPDIR"'/_go_os_test,' src/os/path_test.go sed -i 's,/_go_os_test,'"$TMPDIR"'/_go_os_test,' src/os/path_test.go
sed -i '/TestRead0/areturn' src/os/os_test.go sed -i '/TestRead0/areturn' src/os/os_test.go
sed -i '/TestSystemRoots/areturn' src/crypto/x509/root_darwin_test.go sed -i '/TestSystemRoots/areturn' src/crypto/x509/root_darwin_test.go
sed -i '/TestDisasmExtld/areturn' src/cmd/objdump/objdump_test.go
touch $TMPDIR/group $TMPDIR/hosts $TMPDIR/passwd touch $TMPDIR/group $TMPDIR/hosts $TMPDIR/passwd
''; '';
patches = [ patches = [
./cacert-1.5.patch ./cacert-1.5.patch
./remove-tools-1.5.patch ./remove-tools-1.5.patch
]; ]
# -ldflags=-s is required to compile on Darwin, see
# https://github.com/golang/go/issues/11994
++ stdenv.lib.optional stdenv.isDarwin ./strip.patch;
GOOS = if stdenv.isDarwin then "darwin" else "linux"; GOOS = if stdenv.isDarwin then "darwin" else "linux";
GOARCH = if stdenv.isDarwin then "amd64" GOARCH = if stdenv.isDarwin then "amd64"

View File

@ -0,0 +1,12 @@
diff --git a/src/cmd/go/build.go b/src/cmd/go/build.go
index 0b14725..a7608ce 100644
--- a/src/cmd/go/build.go
+++ b/src/cmd/go/build.go
@@ -2310,6 +2310,7 @@ func (gcToolchain) ld(b *builder, root *action, out string, allactions []*action
}
}
var ldflags []string
+ ldflags = append(ldflags, "-s")
if buildContext.InstallSuffix != "" {
ldflags = append(ldflags, "-installsuffix", buildContext.InstallSuffix)
}

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, perl, groff, cmake, python, libffi, binutils }: { stdenv, fetchurl, perl, groff, cmake, python, libffi, binutils, debugVersion ? false }:
let let
version = "3.3"; version = "3.3";
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
@ -34,7 +34,7 @@ in stdenv.mkDerivation rec {
in "export ${LD}_LIBRARY_PATH='$$${LD}_LIBRARY_PATH:'`pwd`/lib"; in "export ${LD}_LIBRARY_PATH='$$${LD}_LIBRARY_PATH:'`pwd`/lib";
cmakeFlags = with stdenv; [ cmakeFlags = with stdenv; [
"-DCMAKE_BUILD_TYPE=Release" "-DCMAKE_BUILD_TYPE=${if debugVersion then "Debug" else "Release"}"
"-DLLVM_BUILD_TESTS=ON" "-DLLVM_BUILD_TESTS=ON"
"-DLLVM_ENABLE_FFI=ON" "-DLLVM_ENABLE_FFI=ON"
"-DLLVM_BINUTILS_INCDIR=${binutils}/include" "-DLLVM_BINUTILS_INCDIR=${binutils}/include"

View File

@ -12,6 +12,7 @@
, version , version
, zlib , zlib
, compiler-rt_src , compiler-rt_src
, debugVersion ? false
}: }:
let let
@ -41,7 +42,7 @@ in stdenv.mkDerivation rec {
''; '';
cmakeFlags = with stdenv; [ cmakeFlags = with stdenv; [
"-DCMAKE_BUILD_TYPE=Release" "-DCMAKE_BUILD_TYPE=${if debugVersion then "Debug" else "Release"}"
"-DLLVM_BUILD_TESTS=ON" "-DLLVM_BUILD_TESTS=ON"
"-DLLVM_ENABLE_FFI=ON" "-DLLVM_ENABLE_FFI=ON"
"-DLLVM_REQUIRES_RTTI=1" "-DLLVM_REQUIRES_RTTI=1"

View File

@ -12,6 +12,7 @@
, version , version
, zlib , zlib
, compiler-rt_src , compiler-rt_src
, debugVersion ? false
}: }:
let let
@ -38,7 +39,7 @@ in stdenv.mkDerivation rec {
''; '';
cmakeFlags = with stdenv; [ cmakeFlags = with stdenv; [
"-DCMAKE_BUILD_TYPE=Release" "-DCMAKE_BUILD_TYPE=${if debugVersion then "Debug" else "Release"}"
"-DLLVM_BUILD_TESTS=ON" "-DLLVM_BUILD_TESTS=ON"
"-DLLVM_ENABLE_FFI=ON" "-DLLVM_ENABLE_FFI=ON"
"-DLLVM_REQUIRES_RTTI=1" "-DLLVM_REQUIRES_RTTI=1"

View File

@ -12,6 +12,7 @@
, version , version
, zlib , zlib
, compiler-rt_src , compiler-rt_src
, debugVersion ? false
}: }:
let let
@ -38,7 +39,7 @@ in stdenv.mkDerivation rec {
''; '';
cmakeFlags = with stdenv; [ cmakeFlags = with stdenv; [
"-DCMAKE_BUILD_TYPE=Release" "-DCMAKE_BUILD_TYPE=${if debugVersion then "Debug" else "Release"}"
"-DLLVM_BUILD_TESTS=ON" "-DLLVM_BUILD_TESTS=ON"
"-DLLVM_ENABLE_FFI=ON" "-DLLVM_ENABLE_FFI=ON"
"-DLLVM_ENABLE_RTTI=ON" "-DLLVM_ENABLE_RTTI=ON"

View File

@ -13,6 +13,7 @@
, zlib , zlib
, libcxxabi , libcxxabi
, compiler-rt_src , compiler-rt_src
, debugVersion ? false
}: }:
let let
@ -40,7 +41,7 @@ in stdenv.mkDerivation rec {
''; '';
cmakeFlags = with stdenv; [ cmakeFlags = with stdenv; [
"-DCMAKE_BUILD_TYPE=Release" "-DCMAKE_BUILD_TYPE=${if debugVersion then "Debug" else "Release"}"
"-DLLVM_INSTALL_UTILS=ON" # Needed by rustc "-DLLVM_INSTALL_UTILS=ON" # Needed by rustc
"-DLLVM_BUILD_TESTS=ON" "-DLLVM_BUILD_TESTS=ON"
"-DLLVM_ENABLE_FFI=ON" "-DLLVM_ENABLE_FFI=ON"

View File

@ -182,6 +182,8 @@ let result = stdenv.mkDerivation rec {
passthru.home = result; passthru.home = result;
passthru.architecture = architecture;
meta = with stdenv.lib; { meta = with stdenv.lib; {
license = licenses.unfree; license = licenses.unfree;
platforms = [ "i686-linux" "x86_64-linux" ]; # some inherit jre.meta.platforms platforms = [ "i686-linux" "x86_64-linux" ]; # some inherit jre.meta.platforms

View File

@ -2,6 +2,7 @@
, llvmPackages_37, jemalloc, ncurses , llvmPackages_37, jemalloc, ncurses
, shortVersion, isRelease , shortVersion, isRelease
, forceBundledLLVM ? false
, srcSha, srcRev ? "" , srcSha, srcRev ? ""
, snapshotHashLinux686, snapshotHashLinux64 , snapshotHashLinux686, snapshotHashLinux64
, snapshotHashDarwin686, snapshotHashDarwin64 , snapshotHashDarwin686, snapshotHashDarwin64
@ -76,7 +77,7 @@ let version = if isRelease then
snapshotName = "rust-stage0-${snapshotDate}-${snapshotRev}-${platform}-${snapshotHash}.tar.bz2"; snapshotName = "rust-stage0-${snapshotDate}-${snapshotRev}-${platform}-${snapshotHash}.tar.bz2";
in in
stdenv.mkDerivation { with stdenv.lib; stdenv.mkDerivation {
inherit name; inherit name;
inherit version; inherit version;
inherit meta; inherit meta;
@ -106,7 +107,7 @@ stdenv.mkDerivation {
installPhase = '' installPhase = ''
mkdir -p "$out" mkdir -p "$out"
cp -r bin "$out/bin" cp -r bin "$out/bin"
'' + stdenv.lib.optionalString stdenv.isLinux '' '' + optionalString stdenv.isLinux ''
patchelf --interpreter "${stdenv.glibc}/lib/${stdenv.cc.dynamicLinker}" \ patchelf --interpreter "${stdenv.glibc}/lib/${stdenv.cc.dynamicLinker}" \
--set-rpath "${stdenv.cc.cc}/lib/:${stdenv.cc.cc}/lib64/" \ --set-rpath "${stdenv.cc.cc}/lib/:${stdenv.cc.cc}/lib64/" \
"$out/bin/rustc" "$out/bin/rustc"
@ -115,9 +116,10 @@ stdenv.mkDerivation {
configureFlags = configureFlags configureFlags = configureFlags
++ [ "--enable-local-rust" "--local-rust-root=$snapshot" "--enable-rpath" ] ++ [ "--enable-local-rust" "--local-rust-root=$snapshot" "--enable-rpath" ]
++ [ "--llvm-root=${llvmPackages_37.llvm}" ] #"--jemalloc-root=${jemalloc}/lib" ] # ++ [ "--jemalloc-root=${jemalloc}/lib"
++ [ "--default-linker=${stdenv.cc}/bin/cc" "--default-ar=${stdenv.cc.binutils}/bin/ar" ] ++ [ "--default-linker=${stdenv.cc}/bin/cc" "--default-ar=${stdenv.cc.binutils}/bin/ar" ]
++ stdenv.lib.optional (stdenv.cc.cc ? isClang) "--enable-clang"; ++ optional (stdenv.cc.cc ? isClang) "--enable-clang"
++ optional (!forceBundledLLVM) "--llvm-root=${llvmPackages_37.llvm}";
inherit patches; inherit patches;
@ -132,7 +134,7 @@ stdenv.mkDerivation {
--replace "\$\$(subst /,//," "\$\$(subst /,/," --replace "\$\$(subst /,//," "\$\$(subst /,/,"
# Fix dynamic linking against llvm # Fix dynamic linking against llvm
sed -i 's/, kind = \\"static\\"//g' src/etc/mklldeps.py ${optionalString (!forceBundledLLVM) ''sed -i 's/, kind = \\"static\\"//g' src/etc/mklldeps.py''}
# Fix the configure script to not require curl as we won't use it # Fix the configure script to not require curl as we won't use it
sed -i configure \ sed -i configure \
@ -155,8 +157,9 @@ stdenv.mkDerivation {
# Procps is needed for one of the test cases # Procps is needed for one of the test cases
nativeBuildInputs = [ file python2 ] nativeBuildInputs = [ file python2 ]
++ stdenv.lib.optionals stdenv.isLinux [ procps ]; ++ optionals stdenv.isLinux [ procps ];
buildInputs = [ llvmPackages_37.llvm ncurses ]; buildInputs = [ ncurses ]
++ optional (!forceBundledLLVM) llvmPackages_37.llvm;
enableParallelBuilding = true; enableParallelBuilding = true;

View File

@ -2,10 +2,11 @@
{ stdenv, callPackage }: { stdenv, callPackage }:
callPackage ./generic.nix { callPackage ./generic.nix {
shortVersion = "2015-09-23"; shortVersion = "2015-10-17";
isRelease = false; isRelease = false;
srcRev = "b2f379cdc23aec5c5d0d62acfcc5a4a18ebf0e30"; forceBundledLLVM = true;
srcSha = "1z710f5vv9pbis1q96dc6kqvi0j7xgg95r5f5c3czbvndrxjwm03"; srcRev = "20a6938c0";
srcSha = "18dalmwmyw2csnm72qwkkh37ixxbrn2i5lmwp2q0x9plh5qj5627";
/* Rust is bootstrapped from an earlier built version. We need /* Rust is bootstrapped from an earlier built version. We need
to fetch these earlier versions, which vary per platform. to fetch these earlier versions, which vary per platform.

View File

@ -433,11 +433,6 @@ self: super: {
openpgp = dontCheck super.openpgp; openpgp = dontCheck super.openpgp;
optional = dontCheck super.optional; optional = dontCheck super.optional;
os-release = dontCheck super.os-release; os-release = dontCheck super.os-release;
pandoc-citeproc = dontCheck super.pandoc-citeproc;
pandoc-citeproc_0_6 = dontCheck super.pandoc-citeproc_0_6;
pandoc-citeproc_0_6_0_1 = dontCheck super.pandoc-citeproc_0_6_0_1;
pandoc-citeproc_0_7_3 = dontCheck super.pandoc-citeproc_0_7_3;
pandoc-citeproc_0_7_3_1 = dontCheck super.pandoc-citeproc_0_7_3;
persistent-redis = dontCheck super.persistent-redis; persistent-redis = dontCheck super.persistent-redis;
pipes-extra = dontCheck super.pipes-extra; pipes-extra = dontCheck super.pipes-extra;
pipes-websockets = dontCheck super.pipes-websockets; pipes-websockets = dontCheck super.pipes-websockets;
@ -915,4 +910,9 @@ self: super: {
}); });
fltkhs-fluid-examples = dontDistribute super.fltkhs-fluid-examples; fltkhs-fluid-examples = dontDistribute super.fltkhs-fluid-examples;
# https://github.com/skogsbaer/hscurses/pull/26
hscurses = overrideCabal super.hscurses (drv: {
librarySystemDepends = (drv.librarySystemDepends or []) ++ [ pkgs.ncurses ];
});
} }

View File

@ -34,14 +34,14 @@ self: super: {
time = null; time = null;
unix = null; unix = null;
# binary is not a core library for this compiler. # These packages are core libraries in GHC 7.10.x, but not here.
binary = self.binary_0_7_6_1; binary = self.binary_0_7_6_1;
deepseq = self.deepseq_1_3_0_1;
# deepseq is not a core library for this compiler. haskeline = self.haskeline_0_7_2_1;
deepseq = self.deepseq_1_4_1_2; hoopl = self.hoopl_3_10_2_0;
terminfo = self.terminfo_0_4_0_1;
# transformers is not a core library for this compiler.
transformers = self.transformers_0_4_3_0; transformers = self.transformers_0_4_3_0;
xhtml = self.xhtml_3000_2_1;
# https://github.com/tibbe/hashable/issues/85 # https://github.com/tibbe/hashable/issues/85
hashable = dontCheck super.hashable; hashable = dontCheck super.hashable;

View File

@ -34,11 +34,12 @@ self: super: {
time = null; time = null;
unix = null; unix = null;
# deepseq is not a core library for this compiler. # These packages are core libraries in GHC 7.10.x, but not here.
deepseq = self.deepseq_1_4_1_2; deepseq = self.deepseq_1_3_0_1;
haskeline = self.haskeline_0_7_2_1;
# transformers is not a core library for this compiler. terminfo = self.terminfo_0_4_0_1;
transformers = self.transformers_0_4_3_0; transformers = self.transformers_0_4_3_0;
xhtml = self.xhtml_3000_2_1;
# https://github.com/haskell/cabal/issues/2322 # https://github.com/haskell/cabal/issues/2322
Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_7_6_1; process = self.process_1_2_3_0; }; Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_7_6_1; process = self.process_1_2_3_0; };

View File

@ -34,8 +34,11 @@ self: super: {
time = null; time = null;
unix = null; unix = null;
# transformers is not a core library for this compiler. # These packages are core libraries in GHC 7.10.x, but not here.
haskeline = self.haskeline_0_7_2_1;
terminfo = self.terminfo_0_4_0_1;
transformers = self.transformers_0_4_3_0; transformers = self.transformers_0_4_3_0;
xhtml = self.xhtml_3000_2_1;
# https://github.com/haskell/cabal/issues/2322 # https://github.com/haskell/cabal/issues/2322
Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_7_6_1; }; Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_7_6_1; };

View File

@ -84,10 +84,6 @@ self: super: {
seqid = super.seqid_0_1_0; seqid = super.seqid_0_1_0;
seqid-streams = super.seqid-streams_0_1_0; seqid-streams = super.seqid-streams_0_1_0;
# Need binary >= 0.7.2, but our compiler has only 0.7.1.0.
hosc = super.hosc.overrideScope (self: super: { binary = self.binary_0_7_6_1; });
tidal-midi = super.tidal-midi.overrideScope (self: super: { binary = self.binary_0_7_6_1; });
# These packages need mtl 2.2.x directly or indirectly via dependencies. # These packages need mtl 2.2.x directly or indirectly via dependencies.
amazonka = markBroken super.amazonka; amazonka = markBroken super.amazonka;
apiary-purescript = markBroken super.apiary-purescript; apiary-purescript = markBroken super.apiary-purescript;

View File

@ -55,6 +55,14 @@ self: super: {
unordered-containers = null; unordered-containers = null;
vector = null; vector = null;
# These packages are core libraries in GHC 7.10.x, but not here.
bin-package-db = null;
haskeline = self.haskeline_0_7_2_1;
hoopl = self.hoopl_3_10_2_0;
hpc = self.hpc_0_6_0_2;
terminfo = self.terminfo_0_4_0_1;
xhtml = self.xhtml_3000_2_1;
pqueue = overrideCabal super.pqueue (drv: { pqueue = overrideCabal super.pqueue (drv: {
postPatch = '' postPatch = ''
sed -i -e '12s|null|Data.PQueue.Internals.null|' Data/PQueue/Internals.hs sed -i -e '12s|null|Data.PQueue.Internals.null|' Data/PQueue/Internals.hs

View File

@ -1833,6 +1833,7 @@ dont-distribute-packages:
hspear: [ i686-linux, x86_64-linux, x86_64-darwin ] hspear: [ i686-linux, x86_64-linux, x86_64-darwin ]
hspec-experimental: [ i686-linux, x86_64-linux, x86_64-darwin ] hspec-experimental: [ i686-linux, x86_64-linux, x86_64-darwin ]
hspec-shouldbe: [ i686-linux, x86_64-linux, x86_64-darwin ] hspec-shouldbe: [ i686-linux, x86_64-linux, x86_64-darwin ]
hspec-test-sandbox: [ i686-linux, x86_64-linux, x86_64-darwin ]
HsPerl5: [ i686-linux, x86_64-linux, x86_64-darwin ] HsPerl5: [ i686-linux, x86_64-linux, x86_64-darwin ]
hs-pgms: [ i686-linux, x86_64-linux, x86_64-darwin ] hs-pgms: [ i686-linux, x86_64-linux, x86_64-darwin ]
hs-pkpass: [ i686-linux, x86_64-linux, x86_64-darwin ] hs-pkpass: [ i686-linux, x86_64-linux, x86_64-darwin ]
@ -3006,6 +3007,7 @@ dont-distribute-packages:
seacat: [ i686-linux, x86_64-linux, x86_64-darwin ] seacat: [ i686-linux, x86_64-linux, x86_64-darwin ]
search: [ i686-linux, x86_64-linux, x86_64-darwin ] search: [ i686-linux, x86_64-linux, x86_64-darwin ]
secdh: [ i686-linux, x86_64-linux, x86_64-darwin ] secdh: [ i686-linux, x86_64-linux, x86_64-darwin ]
secp256k1: [ i686-linux, x86_64-linux, x86_64-darwin ]
secret-santa: [ i686-linux, x86_64-linux, x86_64-darwin ] secret-santa: [ i686-linux, x86_64-linux, x86_64-darwin ]
secret-sharing: [ i686-linux, x86_64-linux, x86_64-darwin ] secret-sharing: [ i686-linux, x86_64-linux, x86_64-darwin ]
secrm: [ i686-linux, x86_64-linux, x86_64-darwin ] secrm: [ i686-linux, x86_64-linux, x86_64-darwin ]

View File

@ -531,6 +531,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1074,6 +1075,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1410,6 +1412,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1638,6 +1641,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -5255,6 +5259,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13"; "markdown" = doDistribute super."markdown_0_1_13";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5468,6 +5473,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_6_3"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5502,6 +5508,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5819,6 +5826,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5958,6 +5966,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6351,6 +6360,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6418,6 +6428,7 @@ self: super: {
"random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-fu" = doDistribute super."random-fu_0_2_6_1";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6504,9 +6515,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7082,6 +7095,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -531,6 +531,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1074,6 +1075,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1410,6 +1412,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1638,6 +1641,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -5254,6 +5258,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13"; "markdown" = doDistribute super."markdown_0_1_13";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5467,6 +5472,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_6_3"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5501,6 +5507,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5818,6 +5825,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5957,6 +5965,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6350,6 +6359,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6417,6 +6427,7 @@ self: super: {
"random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-fu" = doDistribute super."random-fu_0_2_6_1";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6503,9 +6514,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7081,6 +7094,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -531,6 +531,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1074,6 +1075,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1410,6 +1412,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1638,6 +1641,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -5254,6 +5258,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13"; "markdown" = doDistribute super."markdown_0_1_13";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5467,6 +5472,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_6_3"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5501,6 +5507,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5818,6 +5825,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5957,6 +5965,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6350,6 +6359,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6417,6 +6427,7 @@ self: super: {
"random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-fu" = doDistribute super."random-fu_0_2_6_1";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6503,9 +6514,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7081,6 +7094,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -531,6 +531,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1074,6 +1075,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1410,6 +1412,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1638,6 +1641,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -5254,6 +5258,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13"; "markdown" = doDistribute super."markdown_0_1_13";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5467,6 +5472,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_6_3"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5501,6 +5507,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5818,6 +5825,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5957,6 +5965,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6350,6 +6359,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6417,6 +6427,7 @@ self: super: {
"random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-fu" = doDistribute super."random-fu_0_2_6_1";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6503,9 +6514,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7081,6 +7094,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -531,6 +531,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1074,6 +1075,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1410,6 +1412,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1638,6 +1641,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -5251,6 +5255,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13"; "markdown" = doDistribute super."markdown_0_1_13";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5464,6 +5469,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_6_3"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5498,6 +5504,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5815,6 +5822,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5954,6 +5962,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6347,6 +6356,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6414,6 +6424,7 @@ self: super: {
"random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-fu" = doDistribute super."random-fu_0_2_6_1";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6500,9 +6511,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7077,6 +7090,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -531,6 +531,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1074,6 +1075,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1410,6 +1412,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1638,6 +1641,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -5251,6 +5255,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13"; "markdown" = doDistribute super."markdown_0_1_13";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5464,6 +5469,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_6_3"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5498,6 +5504,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5815,6 +5822,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5954,6 +5962,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6347,6 +6356,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6414,6 +6424,7 @@ self: super: {
"random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-fu" = doDistribute super."random-fu_0_2_6_1";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6500,9 +6511,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7077,6 +7090,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -531,6 +531,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1073,6 +1074,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1408,6 +1410,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1635,6 +1638,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -5247,6 +5251,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13"; "markdown" = doDistribute super."markdown_0_1_13";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5460,6 +5465,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_6_3"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5494,6 +5500,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5810,6 +5817,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5949,6 +5957,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6342,6 +6351,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6409,6 +6419,7 @@ self: super: {
"random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-fu" = doDistribute super."random-fu_0_2_6_1";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6495,9 +6506,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7071,6 +7084,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -531,6 +531,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1073,6 +1074,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1408,6 +1410,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1635,6 +1638,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -5247,6 +5251,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13"; "markdown" = doDistribute super."markdown_0_1_13";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5460,6 +5465,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_6_3"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5494,6 +5500,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5810,6 +5817,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5949,6 +5957,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6342,6 +6351,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6409,6 +6419,7 @@ self: super: {
"random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-fu" = doDistribute super."random-fu_0_2_6_1";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6495,9 +6506,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7071,6 +7084,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -529,6 +529,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1069,6 +1070,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1404,6 +1406,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1630,6 +1633,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -5235,6 +5239,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13"; "markdown" = doDistribute super."markdown_0_1_13";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5448,6 +5453,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_7_0"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5482,6 +5488,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5798,6 +5805,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5936,6 +5944,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6329,6 +6338,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6396,6 +6406,7 @@ self: super: {
"random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-fu" = doDistribute super."random-fu_0_2_6_1";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6481,9 +6492,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7056,6 +7069,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_8";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -529,6 +529,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1069,6 +1070,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1403,6 +1405,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1629,6 +1632,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -5223,6 +5227,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13_1"; "markdown" = doDistribute super."markdown_0_1_13_1";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5435,6 +5440,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_7_0"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5469,6 +5475,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5785,6 +5792,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5923,6 +5931,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6316,6 +6325,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6383,6 +6393,7 @@ self: super: {
"random-fu" = doDistribute super."random-fu_0_2_6_1"; "random-fu" = doDistribute super."random-fu_0_2_6_1";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6468,9 +6479,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7042,6 +7055,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -528,6 +528,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1068,6 +1069,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1402,6 +1404,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_3"; "attoparsec" = doDistribute super."attoparsec_0_12_1_3";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1628,6 +1631,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -4011,6 +4015,7 @@ self: super: {
"hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-banded" = dontDistribute super."hmatrix-banded";
"hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-csv" = dontDistribute super."hmatrix-csv";
"hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
"hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3";
"hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
"hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
"hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
@ -5199,6 +5204,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13_1"; "markdown" = doDistribute super."markdown_0_1_13_1";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5411,6 +5417,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_7_0"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5445,6 +5452,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5759,6 +5767,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5895,6 +5904,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6286,6 +6296,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6352,6 +6363,7 @@ self: super: {
"random-extras" = dontDistribute super."random-extras"; "random-extras" = dontDistribute super."random-extras";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6437,9 +6449,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7009,6 +7023,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_10"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_10";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -528,6 +528,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1068,6 +1069,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1402,6 +1404,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_3"; "attoparsec" = doDistribute super."attoparsec_0_12_1_3";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1628,6 +1631,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -4010,6 +4014,7 @@ self: super: {
"hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-banded" = dontDistribute super."hmatrix-banded";
"hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-csv" = dontDistribute super."hmatrix-csv";
"hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
"hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3";
"hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
"hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
"hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
@ -5195,6 +5200,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13_1"; "markdown" = doDistribute super."markdown_0_1_13_1";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5407,6 +5413,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_7_0"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5441,6 +5448,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5755,6 +5763,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5891,6 +5900,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6167,6 +6177,7 @@ self: super: {
"pretty-error" = dontDistribute super."pretty-error"; "pretty-error" = dontDistribute super."pretty-error";
"pretty-hex" = dontDistribute super."pretty-hex"; "pretty-hex" = dontDistribute super."pretty-hex";
"pretty-ncols" = dontDistribute super."pretty-ncols"; "pretty-ncols" = dontDistribute super."pretty-ncols";
"pretty-show" = doDistribute super."pretty-show_1_6_8_2";
"pretty-sop" = dontDistribute super."pretty-sop"; "pretty-sop" = dontDistribute super."pretty-sop";
"pretty-tree" = dontDistribute super."pretty-tree"; "pretty-tree" = dontDistribute super."pretty-tree";
"prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
@ -6281,6 +6292,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6347,6 +6359,7 @@ self: super: {
"random-extras" = dontDistribute super."random-extras"; "random-extras" = dontDistribute super."random-extras";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6432,9 +6445,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7003,6 +7018,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_10"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_10";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -528,6 +528,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1068,6 +1069,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1402,6 +1404,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_3"; "attoparsec" = doDistribute super."attoparsec_0_12_1_3";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1628,6 +1631,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -4009,6 +4013,7 @@ self: super: {
"hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-banded" = dontDistribute super."hmatrix-banded";
"hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-csv" = dontDistribute super."hmatrix-csv";
"hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
"hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3";
"hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
"hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
"hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
@ -5194,6 +5199,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13_1"; "markdown" = doDistribute super."markdown_0_1_13_1";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5406,6 +5412,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_7_0"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5440,6 +5447,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5754,6 +5762,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5890,6 +5899,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6166,6 +6176,7 @@ self: super: {
"pretty-error" = dontDistribute super."pretty-error"; "pretty-error" = dontDistribute super."pretty-error";
"pretty-hex" = dontDistribute super."pretty-hex"; "pretty-hex" = dontDistribute super."pretty-hex";
"pretty-ncols" = dontDistribute super."pretty-ncols"; "pretty-ncols" = dontDistribute super."pretty-ncols";
"pretty-show" = doDistribute super."pretty-show_1_6_8_2";
"pretty-sop" = dontDistribute super."pretty-sop"; "pretty-sop" = dontDistribute super."pretty-sop";
"pretty-tree" = dontDistribute super."pretty-tree"; "pretty-tree" = dontDistribute super."pretty-tree";
"prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
@ -6280,6 +6291,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6346,6 +6358,7 @@ self: super: {
"random-extras" = dontDistribute super."random-extras"; "random-extras" = dontDistribute super."random-extras";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6431,9 +6444,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7002,6 +7017,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -528,6 +528,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1068,6 +1069,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1402,6 +1404,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_3"; "attoparsec" = doDistribute super."attoparsec_0_12_1_3";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1628,6 +1631,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -4003,9 +4007,11 @@ self: super: {
"hly" = dontDistribute super."hly"; "hly" = dontDistribute super."hly";
"hmark" = dontDistribute super."hmark"; "hmark" = dontDistribute super."hmark";
"hmarkup" = dontDistribute super."hmarkup"; "hmarkup" = dontDistribute super."hmarkup";
"hmatrix" = doDistribute super."hmatrix_0_16_1_5";
"hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-banded" = dontDistribute super."hmatrix-banded";
"hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-csv" = dontDistribute super."hmatrix-csv";
"hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
"hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3";
"hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
"hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
"hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
@ -5191,6 +5197,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13_1"; "markdown" = doDistribute super."markdown_0_1_13_1";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5403,6 +5410,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_7_0"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5437,6 +5445,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5751,6 +5760,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5887,6 +5897,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6163,6 +6174,7 @@ self: super: {
"pretty-error" = dontDistribute super."pretty-error"; "pretty-error" = dontDistribute super."pretty-error";
"pretty-hex" = dontDistribute super."pretty-hex"; "pretty-hex" = dontDistribute super."pretty-hex";
"pretty-ncols" = dontDistribute super."pretty-ncols"; "pretty-ncols" = dontDistribute super."pretty-ncols";
"pretty-show" = doDistribute super."pretty-show_1_6_8_2";
"pretty-sop" = dontDistribute super."pretty-sop"; "pretty-sop" = dontDistribute super."pretty-sop";
"pretty-tree" = dontDistribute super."pretty-tree"; "pretty-tree" = dontDistribute super."pretty-tree";
"prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
@ -6277,6 +6289,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6343,6 +6356,7 @@ self: super: {
"random-extras" = dontDistribute super."random-extras"; "random-extras" = dontDistribute super."random-extras";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6428,9 +6442,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -6999,6 +7015,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -527,6 +527,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1067,6 +1068,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1401,6 +1403,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_3"; "attoparsec" = doDistribute super."attoparsec_0_12_1_3";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1626,6 +1629,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -3999,9 +4003,11 @@ self: super: {
"hly" = dontDistribute super."hly"; "hly" = dontDistribute super."hly";
"hmark" = dontDistribute super."hmark"; "hmark" = dontDistribute super."hmark";
"hmarkup" = dontDistribute super."hmarkup"; "hmarkup" = dontDistribute super."hmarkup";
"hmatrix" = doDistribute super."hmatrix_0_16_1_5";
"hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-banded" = dontDistribute super."hmatrix-banded";
"hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-csv" = dontDistribute super."hmatrix-csv";
"hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
"hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3";
"hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
"hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
"hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
@ -5186,6 +5192,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13_1"; "markdown" = doDistribute super."markdown_0_1_13_1";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5396,6 +5403,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_7_0"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5430,6 +5438,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5744,6 +5753,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5880,6 +5890,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6156,6 +6167,7 @@ self: super: {
"pretty-error" = dontDistribute super."pretty-error"; "pretty-error" = dontDistribute super."pretty-error";
"pretty-hex" = dontDistribute super."pretty-hex"; "pretty-hex" = dontDistribute super."pretty-hex";
"pretty-ncols" = dontDistribute super."pretty-ncols"; "pretty-ncols" = dontDistribute super."pretty-ncols";
"pretty-show" = doDistribute super."pretty-show_1_6_8_2";
"pretty-sop" = dontDistribute super."pretty-sop"; "pretty-sop" = dontDistribute super."pretty-sop";
"pretty-tree" = dontDistribute super."pretty-tree"; "pretty-tree" = dontDistribute super."pretty-tree";
"prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
@ -6270,6 +6282,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6335,6 +6348,7 @@ self: super: {
"random-extras" = dontDistribute super."random-extras"; "random-extras" = dontDistribute super."random-extras";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6420,9 +6434,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -6991,6 +7007,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -527,6 +527,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1066,6 +1067,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1400,6 +1402,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_5"; "attoparsec" = doDistribute super."attoparsec_0_12_1_5";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1625,6 +1628,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -3993,9 +3997,11 @@ self: super: {
"hly" = dontDistribute super."hly"; "hly" = dontDistribute super."hly";
"hmark" = dontDistribute super."hmark"; "hmark" = dontDistribute super."hmark";
"hmarkup" = dontDistribute super."hmarkup"; "hmarkup" = dontDistribute super."hmarkup";
"hmatrix" = doDistribute super."hmatrix_0_16_1_5";
"hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-banded" = dontDistribute super."hmatrix-banded";
"hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-csv" = dontDistribute super."hmatrix-csv";
"hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
"hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3";
"hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
"hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
"hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
@ -5180,6 +5186,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13_1"; "markdown" = doDistribute super."markdown_0_1_13_1";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5390,6 +5397,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_7_0"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5424,6 +5432,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5736,6 +5745,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5872,6 +5882,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6148,6 +6159,7 @@ self: super: {
"pretty-error" = dontDistribute super."pretty-error"; "pretty-error" = dontDistribute super."pretty-error";
"pretty-hex" = dontDistribute super."pretty-hex"; "pretty-hex" = dontDistribute super."pretty-hex";
"pretty-ncols" = dontDistribute super."pretty-ncols"; "pretty-ncols" = dontDistribute super."pretty-ncols";
"pretty-show" = doDistribute super."pretty-show_1_6_8_2";
"pretty-sop" = dontDistribute super."pretty-sop"; "pretty-sop" = dontDistribute super."pretty-sop";
"pretty-tree" = dontDistribute super."pretty-tree"; "pretty-tree" = dontDistribute super."pretty-tree";
"prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
@ -6262,6 +6274,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6325,6 +6338,7 @@ self: super: {
"random-extras" = dontDistribute super."random-extras"; "random-extras" = dontDistribute super."random-extras";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6410,9 +6424,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -6981,6 +6997,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -529,6 +529,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1069,6 +1070,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1403,6 +1405,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1629,6 +1632,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -5220,6 +5224,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13_1"; "markdown" = doDistribute super."markdown_0_1_13_1";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5432,6 +5437,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_7_0"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5466,6 +5472,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5782,6 +5789,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5919,6 +5927,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6312,6 +6321,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6378,6 +6388,7 @@ self: super: {
"random-extras" = dontDistribute super."random-extras"; "random-extras" = dontDistribute super."random-extras";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6463,9 +6474,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7036,6 +7049,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -528,6 +528,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1068,6 +1069,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1402,6 +1404,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1628,6 +1631,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -4019,6 +4023,7 @@ self: super: {
"hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-banded" = dontDistribute super."hmatrix-banded";
"hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-csv" = dontDistribute super."hmatrix-csv";
"hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
"hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3";
"hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
"hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
"hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
@ -5216,6 +5221,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13_1"; "markdown" = doDistribute super."markdown_0_1_13_1";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5428,6 +5434,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_7_0"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5462,6 +5469,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5777,6 +5785,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5914,6 +5923,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6306,6 +6316,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6372,6 +6383,7 @@ self: super: {
"random-extras" = dontDistribute super."random-extras"; "random-extras" = dontDistribute super."random-extras";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6457,9 +6469,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7030,6 +7044,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -528,6 +528,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1068,6 +1069,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1402,6 +1404,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1628,6 +1631,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -4018,6 +4022,7 @@ self: super: {
"hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-banded" = dontDistribute super."hmatrix-banded";
"hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-csv" = dontDistribute super."hmatrix-csv";
"hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
"hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3";
"hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
"hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
"hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
@ -5214,6 +5219,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13_1"; "markdown" = doDistribute super."markdown_0_1_13_1";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5426,6 +5432,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_7_0"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5460,6 +5467,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5775,6 +5783,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5912,6 +5921,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6304,6 +6314,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6370,6 +6381,7 @@ self: super: {
"random-extras" = dontDistribute super."random-extras"; "random-extras" = dontDistribute super."random-extras";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6455,9 +6467,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7028,6 +7042,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -528,6 +528,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1068,6 +1069,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1402,6 +1404,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1628,6 +1631,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -4018,6 +4022,7 @@ self: super: {
"hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-banded" = dontDistribute super."hmatrix-banded";
"hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-csv" = dontDistribute super."hmatrix-csv";
"hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
"hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3";
"hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
"hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
"hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
@ -5208,6 +5213,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13_1"; "markdown" = doDistribute super."markdown_0_1_13_1";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5420,6 +5426,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_7_0"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5454,6 +5461,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5769,6 +5777,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5906,6 +5915,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6298,6 +6308,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6364,6 +6375,7 @@ self: super: {
"random-extras" = dontDistribute super."random-extras"; "random-extras" = dontDistribute super."random-extras";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6449,9 +6461,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7022,6 +7036,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_9";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -528,6 +528,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1068,6 +1069,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1402,6 +1404,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_2"; "attoparsec" = doDistribute super."attoparsec_0_12_1_2";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1628,6 +1631,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -4014,6 +4018,7 @@ self: super: {
"hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-banded" = dontDistribute super."hmatrix-banded";
"hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-csv" = dontDistribute super."hmatrix-csv";
"hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
"hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3";
"hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
"hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
"hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
@ -5203,6 +5208,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13_1"; "markdown" = doDistribute super."markdown_0_1_13_1";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5415,6 +5421,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_7_0"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5449,6 +5456,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5764,6 +5772,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5901,6 +5910,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6293,6 +6303,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6359,6 +6370,7 @@ self: super: {
"random-extras" = dontDistribute super."random-extras"; "random-extras" = dontDistribute super."random-extras";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6444,9 +6456,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7017,6 +7031,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_10"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_10";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -528,6 +528,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1068,6 +1069,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1402,6 +1404,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_3"; "attoparsec" = doDistribute super."attoparsec_0_12_1_3";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1628,6 +1631,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -4013,6 +4017,7 @@ self: super: {
"hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-banded" = dontDistribute super."hmatrix-banded";
"hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-csv" = dontDistribute super."hmatrix-csv";
"hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
"hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3";
"hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats"; "hmatrix-gsl-stats" = dontDistribute super."hmatrix-gsl-stats";
"hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
"hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
@ -5201,6 +5206,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13_1"; "markdown" = doDistribute super."markdown_0_1_13_1";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5413,6 +5419,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_7_0"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5447,6 +5454,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5762,6 +5770,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5898,6 +5907,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -6290,6 +6300,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6356,6 +6367,7 @@ self: super: {
"random-extras" = dontDistribute super."random-extras"; "random-extras" = dontDistribute super."random-extras";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6441,9 +6453,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -7014,6 +7028,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_10"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_10";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -523,6 +523,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1057,6 +1058,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1389,6 +1391,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_5"; "attoparsec" = doDistribute super."attoparsec_0_12_1_5";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1613,6 +1616,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -2276,6 +2280,7 @@ self: super: {
"cube" = dontDistribute super."cube"; "cube" = dontDistribute super."cube";
"cubical" = dontDistribute super."cubical"; "cubical" = dontDistribute super."cubical";
"cubicbezier" = dontDistribute super."cubicbezier"; "cubicbezier" = dontDistribute super."cubicbezier";
"cubicspline" = doDistribute super."cubicspline_0_1_1";
"cublas" = dontDistribute super."cublas"; "cublas" = dontDistribute super."cublas";
"cuboid" = dontDistribute super."cuboid"; "cuboid" = dontDistribute super."cuboid";
"cuda" = dontDistribute super."cuda"; "cuda" = dontDistribute super."cuda";
@ -3963,9 +3968,11 @@ self: super: {
"hly" = dontDistribute super."hly"; "hly" = dontDistribute super."hly";
"hmark" = dontDistribute super."hmark"; "hmark" = dontDistribute super."hmark";
"hmarkup" = dontDistribute super."hmarkup"; "hmarkup" = dontDistribute super."hmarkup";
"hmatrix" = doDistribute super."hmatrix_0_16_1_5";
"hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-banded" = dontDistribute super."hmatrix-banded";
"hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-csv" = dontDistribute super."hmatrix-csv";
"hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
"hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3";
"hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1";
"hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
"hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
@ -4254,6 +4261,7 @@ self: super: {
"hsshellscript" = dontDistribute super."hsshellscript"; "hsshellscript" = dontDistribute super."hsshellscript";
"hssourceinfo" = dontDistribute super."hssourceinfo"; "hssourceinfo" = dontDistribute super."hssourceinfo";
"hssqlppp" = dontDistribute super."hssqlppp"; "hssqlppp" = dontDistribute super."hssqlppp";
"hstatistics" = doDistribute super."hstatistics_0_2_5_2";
"hstats" = dontDistribute super."hstats"; "hstats" = dontDistribute super."hstats";
"hstatsd" = dontDistribute super."hstatsd"; "hstatsd" = dontDistribute super."hstatsd";
"hstest" = dontDistribute super."hstest"; "hstest" = dontDistribute super."hstest";
@ -5130,6 +5138,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13_1"; "markdown" = doDistribute super."markdown_0_1_13_1";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5333,6 +5342,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_9_1"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5367,6 +5377,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5674,6 +5685,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5808,6 +5820,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -5961,6 +5974,8 @@ self: super: {
"playlists" = dontDistribute super."playlists"; "playlists" = dontDistribute super."playlists";
"plist" = dontDistribute super."plist"; "plist" = dontDistribute super."plist";
"plivo" = dontDistribute super."plivo"; "plivo" = dontDistribute super."plivo";
"plot" = doDistribute super."plot_0_2_3_4";
"plot-gtk" = doDistribute super."plot-gtk_0_2_0_2";
"plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
"plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1";
"plot-lab" = dontDistribute super."plot-lab"; "plot-lab" = dontDistribute super."plot-lab";
@ -6078,6 +6093,7 @@ self: super: {
"pretty-error" = dontDistribute super."pretty-error"; "pretty-error" = dontDistribute super."pretty-error";
"pretty-hex" = dontDistribute super."pretty-hex"; "pretty-hex" = dontDistribute super."pretty-hex";
"pretty-ncols" = dontDistribute super."pretty-ncols"; "pretty-ncols" = dontDistribute super."pretty-ncols";
"pretty-show" = doDistribute super."pretty-show_1_6_8_2";
"pretty-sop" = dontDistribute super."pretty-sop"; "pretty-sop" = dontDistribute super."pretty-sop";
"pretty-tree" = dontDistribute super."pretty-tree"; "pretty-tree" = dontDistribute super."pretty-tree";
"prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
@ -6193,6 +6209,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6256,6 +6273,7 @@ self: super: {
"random-extras" = dontDistribute super."random-extras"; "random-extras" = dontDistribute super."random-extras";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6341,9 +6359,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -6909,6 +6929,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -523,6 +523,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1057,6 +1058,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1389,6 +1391,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_5"; "attoparsec" = doDistribute super."attoparsec_0_12_1_5";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1613,6 +1616,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -2275,6 +2279,7 @@ self: super: {
"cube" = dontDistribute super."cube"; "cube" = dontDistribute super."cube";
"cubical" = dontDistribute super."cubical"; "cubical" = dontDistribute super."cubical";
"cubicbezier" = dontDistribute super."cubicbezier"; "cubicbezier" = dontDistribute super."cubicbezier";
"cubicspline" = doDistribute super."cubicspline_0_1_1";
"cublas" = dontDistribute super."cublas"; "cublas" = dontDistribute super."cublas";
"cuboid" = dontDistribute super."cuboid"; "cuboid" = dontDistribute super."cuboid";
"cuda" = dontDistribute super."cuda"; "cuda" = dontDistribute super."cuda";
@ -3961,9 +3966,11 @@ self: super: {
"hly" = dontDistribute super."hly"; "hly" = dontDistribute super."hly";
"hmark" = dontDistribute super."hmark"; "hmark" = dontDistribute super."hmark";
"hmarkup" = dontDistribute super."hmarkup"; "hmarkup" = dontDistribute super."hmarkup";
"hmatrix" = doDistribute super."hmatrix_0_16_1_5";
"hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-banded" = dontDistribute super."hmatrix-banded";
"hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-csv" = dontDistribute super."hmatrix-csv";
"hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
"hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3";
"hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1";
"hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
"hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
@ -4252,6 +4259,7 @@ self: super: {
"hsshellscript" = dontDistribute super."hsshellscript"; "hsshellscript" = dontDistribute super."hsshellscript";
"hssourceinfo" = dontDistribute super."hssourceinfo"; "hssourceinfo" = dontDistribute super."hssourceinfo";
"hssqlppp" = dontDistribute super."hssqlppp"; "hssqlppp" = dontDistribute super."hssqlppp";
"hstatistics" = doDistribute super."hstatistics_0_2_5_2";
"hstats" = dontDistribute super."hstats"; "hstats" = dontDistribute super."hstats";
"hstatsd" = dontDistribute super."hstatsd"; "hstatsd" = dontDistribute super."hstatsd";
"hstest" = dontDistribute super."hstest"; "hstest" = dontDistribute super."hstest";
@ -5128,6 +5136,7 @@ self: super: {
"markdown" = doDistribute super."markdown_0_1_13_1"; "markdown" = doDistribute super."markdown_0_1_13_1";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5331,6 +5340,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_9_1"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5365,6 +5375,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5672,6 +5683,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5806,6 +5818,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -5959,6 +5972,8 @@ self: super: {
"playlists" = dontDistribute super."playlists"; "playlists" = dontDistribute super."playlists";
"plist" = dontDistribute super."plist"; "plist" = dontDistribute super."plist";
"plivo" = dontDistribute super."plivo"; "plivo" = dontDistribute super."plivo";
"plot" = doDistribute super."plot_0_2_3_4";
"plot-gtk" = doDistribute super."plot-gtk_0_2_0_2";
"plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
"plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1";
"plot-lab" = dontDistribute super."plot-lab"; "plot-lab" = dontDistribute super."plot-lab";
@ -6076,6 +6091,7 @@ self: super: {
"pretty-error" = dontDistribute super."pretty-error"; "pretty-error" = dontDistribute super."pretty-error";
"pretty-hex" = dontDistribute super."pretty-hex"; "pretty-hex" = dontDistribute super."pretty-hex";
"pretty-ncols" = dontDistribute super."pretty-ncols"; "pretty-ncols" = dontDistribute super."pretty-ncols";
"pretty-show" = doDistribute super."pretty-show_1_6_8_2";
"pretty-sop" = dontDistribute super."pretty-sop"; "pretty-sop" = dontDistribute super."pretty-sop";
"pretty-tree" = dontDistribute super."pretty-tree"; "pretty-tree" = dontDistribute super."pretty-tree";
"prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
@ -6191,6 +6207,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quandl-api" = doDistribute super."quandl-api_0_2_0_0"; "quandl-api" = doDistribute super."quandl-api_0_2_0_0";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
@ -6254,6 +6271,7 @@ self: super: {
"random-extras" = dontDistribute super."random-extras"; "random-extras" = dontDistribute super."random-extras";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6339,9 +6357,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -6907,6 +6927,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

View File

@ -522,6 +522,7 @@ self: super: {
"HiggsSet" = dontDistribute super."HiggsSet"; "HiggsSet" = dontDistribute super."HiggsSet";
"Hipmunk" = dontDistribute super."Hipmunk"; "Hipmunk" = dontDistribute super."Hipmunk";
"HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; "HipmunkPlayground" = dontDistribute super."HipmunkPlayground";
"Hish" = dontDistribute super."Hish";
"Histogram" = dontDistribute super."Histogram"; "Histogram" = dontDistribute super."Histogram";
"Hmpf" = dontDistribute super."Hmpf"; "Hmpf" = dontDistribute super."Hmpf";
"Hoed" = dontDistribute super."Hoed"; "Hoed" = dontDistribute super."Hoed";
@ -1052,6 +1053,7 @@ self: super: {
"accelerate-fourier" = dontDistribute super."accelerate-fourier"; "accelerate-fourier" = dontDistribute super."accelerate-fourier";
"accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark";
"accelerate-io" = dontDistribute super."accelerate-io"; "accelerate-io" = dontDistribute super."accelerate-io";
"accelerate-random" = dontDistribute super."accelerate-random";
"accelerate-utility" = dontDistribute super."accelerate-utility"; "accelerate-utility" = dontDistribute super."accelerate-utility";
"accentuateus" = dontDistribute super."accentuateus"; "accentuateus" = dontDistribute super."accentuateus";
"access-time" = dontDistribute super."access-time"; "access-time" = dontDistribute super."access-time";
@ -1384,6 +1386,7 @@ self: super: {
"atomic-write" = dontDistribute super."atomic-write"; "atomic-write" = dontDistribute super."atomic-write";
"atomo" = dontDistribute super."atomo"; "atomo" = dontDistribute super."atomo";
"attempt" = dontDistribute super."attempt"; "attempt" = dontDistribute super."attempt";
"atto-lisp" = doDistribute super."atto-lisp_0_2_2";
"attoparsec" = doDistribute super."attoparsec_0_12_1_6"; "attoparsec" = doDistribute super."attoparsec_0_12_1_6";
"attoparsec-arff" = dontDistribute super."attoparsec-arff"; "attoparsec-arff" = dontDistribute super."attoparsec-arff";
"attoparsec-binary" = dontDistribute super."attoparsec-binary"; "attoparsec-binary" = dontDistribute super."attoparsec-binary";
@ -1604,6 +1607,7 @@ self: super: {
"bindings-svm" = dontDistribute super."bindings-svm"; "bindings-svm" = dontDistribute super."bindings-svm";
"bindings-uname" = dontDistribute super."bindings-uname"; "bindings-uname" = dontDistribute super."bindings-uname";
"bindings-yices" = dontDistribute super."bindings-yices"; "bindings-yices" = dontDistribute super."bindings-yices";
"bindynamic" = dontDistribute super."bindynamic";
"binembed" = dontDistribute super."binembed"; "binembed" = dontDistribute super."binembed";
"binembed-example" = dontDistribute super."binembed-example"; "binembed-example" = dontDistribute super."binembed-example";
"bio" = dontDistribute super."bio"; "bio" = dontDistribute super."bio";
@ -2260,6 +2264,7 @@ self: super: {
"cube" = dontDistribute super."cube"; "cube" = dontDistribute super."cube";
"cubical" = dontDistribute super."cubical"; "cubical" = dontDistribute super."cubical";
"cubicbezier" = dontDistribute super."cubicbezier"; "cubicbezier" = dontDistribute super."cubicbezier";
"cubicspline" = doDistribute super."cubicspline_0_1_1";
"cublas" = dontDistribute super."cublas"; "cublas" = dontDistribute super."cublas";
"cuboid" = dontDistribute super."cuboid"; "cuboid" = dontDistribute super."cuboid";
"cuda" = dontDistribute super."cuda"; "cuda" = dontDistribute super."cuda";
@ -3935,9 +3940,11 @@ self: super: {
"hly" = dontDistribute super."hly"; "hly" = dontDistribute super."hly";
"hmark" = dontDistribute super."hmark"; "hmark" = dontDistribute super."hmark";
"hmarkup" = dontDistribute super."hmarkup"; "hmarkup" = dontDistribute super."hmarkup";
"hmatrix" = doDistribute super."hmatrix_0_16_1_5";
"hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-banded" = dontDistribute super."hmatrix-banded";
"hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-csv" = dontDistribute super."hmatrix-csv";
"hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk";
"hmatrix-gsl" = doDistribute super."hmatrix-gsl_0_16_0_3";
"hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1"; "hmatrix-gsl-stats" = doDistribute super."hmatrix-gsl-stats_0_2_1";
"hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; "hmatrix-mmap" = dontDistribute super."hmatrix-mmap";
"hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; "hmatrix-nipals" = dontDistribute super."hmatrix-nipals";
@ -4225,6 +4232,7 @@ self: super: {
"hsshellscript" = dontDistribute super."hsshellscript"; "hsshellscript" = dontDistribute super."hsshellscript";
"hssourceinfo" = dontDistribute super."hssourceinfo"; "hssourceinfo" = dontDistribute super."hssourceinfo";
"hssqlppp" = dontDistribute super."hssqlppp"; "hssqlppp" = dontDistribute super."hssqlppp";
"hstatistics" = doDistribute super."hstatistics_0_2_5_2";
"hstats" = dontDistribute super."hstats"; "hstats" = dontDistribute super."hstats";
"hstatsd" = dontDistribute super."hstatsd"; "hstatsd" = dontDistribute super."hstatsd";
"hstest" = dontDistribute super."hstest"; "hstest" = dontDistribute super."hstest";
@ -5086,6 +5094,7 @@ self: super: {
"marionetta" = dontDistribute super."marionetta"; "marionetta" = dontDistribute super."marionetta";
"markdown-kate" = dontDistribute super."markdown-kate"; "markdown-kate" = dontDistribute super."markdown-kate";
"markdown-pap" = dontDistribute super."markdown-pap"; "markdown-pap" = dontDistribute super."markdown-pap";
"markdown-unlit" = doDistribute super."markdown-unlit_0_2_0_1";
"markdown2svg" = dontDistribute super."markdown2svg"; "markdown2svg" = dontDistribute super."markdown2svg";
"marked-pretty" = dontDistribute super."marked-pretty"; "marked-pretty" = dontDistribute super."marked-pretty";
"markov" = dontDistribute super."markov"; "markov" = dontDistribute super."markov";
@ -5288,6 +5297,7 @@ self: super: {
"monitor" = dontDistribute super."monitor"; "monitor" = dontDistribute super."monitor";
"mono-foldable" = dontDistribute super."mono-foldable"; "mono-foldable" = dontDistribute super."mono-foldable";
"mono-traversable" = doDistribute super."mono-traversable_0_9_1"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1";
"monoid-absorbing" = dontDistribute super."monoid-absorbing";
"monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5";
"monoid-owns" = dontDistribute super."monoid-owns"; "monoid-owns" = dontDistribute super."monoid-owns";
"monoid-record" = dontDistribute super."monoid-record"; "monoid-record" = dontDistribute super."monoid-record";
@ -5322,6 +5332,7 @@ self: super: {
"msgpack-aeson" = dontDistribute super."msgpack-aeson"; "msgpack-aeson" = dontDistribute super."msgpack-aeson";
"msgpack-idl" = dontDistribute super."msgpack-idl"; "msgpack-idl" = dontDistribute super."msgpack-idl";
"msgpack-rpc" = dontDistribute super."msgpack-rpc"; "msgpack-rpc" = dontDistribute super."msgpack-rpc";
"msh" = dontDistribute super."msh";
"msi-kb-backlit" = dontDistribute super."msi-kb-backlit"; "msi-kb-backlit" = dontDistribute super."msi-kb-backlit";
"mstate" = dontDistribute super."mstate"; "mstate" = dontDistribute super."mstate";
"msu" = dontDistribute super."msu"; "msu" = dontDistribute super."msu";
@ -5628,6 +5639,7 @@ self: super: {
"opendatatable" = dontDistribute super."opendatatable"; "opendatatable" = dontDistribute super."opendatatable";
"openexchangerates" = dontDistribute super."openexchangerates"; "openexchangerates" = dontDistribute super."openexchangerates";
"openflow" = dontDistribute super."openflow"; "openflow" = dontDistribute super."openflow";
"opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo";
"opengles" = dontDistribute super."opengles"; "opengles" = dontDistribute super."opengles";
"openid" = dontDistribute super."openid"; "openid" = dontDistribute super."openid";
"openpgp" = dontDistribute super."openpgp"; "openpgp" = dontDistribute super."openpgp";
@ -5760,6 +5772,7 @@ self: super: {
"pathfinding" = dontDistribute super."pathfinding"; "pathfinding" = dontDistribute super."pathfinding";
"pathfindingcore" = dontDistribute super."pathfindingcore"; "pathfindingcore" = dontDistribute super."pathfindingcore";
"pathtype" = dontDistribute super."pathtype"; "pathtype" = dontDistribute super."pathtype";
"pathwalk" = dontDistribute super."pathwalk";
"patronscraper" = dontDistribute super."patronscraper"; "patronscraper" = dontDistribute super."patronscraper";
"pattern-arrows" = dontDistribute super."pattern-arrows"; "pattern-arrows" = dontDistribute super."pattern-arrows";
"patterns" = dontDistribute super."patterns"; "patterns" = dontDistribute super."patterns";
@ -5910,6 +5923,8 @@ self: super: {
"playlists" = dontDistribute super."playlists"; "playlists" = dontDistribute super."playlists";
"plist" = dontDistribute super."plist"; "plist" = dontDistribute super."plist";
"plivo" = dontDistribute super."plivo"; "plivo" = dontDistribute super."plivo";
"plot" = doDistribute super."plot_0_2_3_4";
"plot-gtk" = doDistribute super."plot-gtk_0_2_0_2";
"plot-gtk-ui" = dontDistribute super."plot-gtk-ui"; "plot-gtk-ui" = dontDistribute super."plot-gtk-ui";
"plot-gtk3" = doDistribute super."plot-gtk3_0_1"; "plot-gtk3" = doDistribute super."plot-gtk3_0_1";
"plot-lab" = dontDistribute super."plot-lab"; "plot-lab" = dontDistribute super."plot-lab";
@ -6025,6 +6040,7 @@ self: super: {
"pretty-error" = dontDistribute super."pretty-error"; "pretty-error" = dontDistribute super."pretty-error";
"pretty-hex" = dontDistribute super."pretty-hex"; "pretty-hex" = dontDistribute super."pretty-hex";
"pretty-ncols" = dontDistribute super."pretty-ncols"; "pretty-ncols" = dontDistribute super."pretty-ncols";
"pretty-show" = doDistribute super."pretty-show_1_6_8_2";
"pretty-sop" = dontDistribute super."pretty-sop"; "pretty-sop" = dontDistribute super."pretty-sop";
"pretty-tree" = dontDistribute super."pretty-tree"; "pretty-tree" = dontDistribute super."pretty-tree";
"prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing";
@ -6140,6 +6156,7 @@ self: super: {
"qd-vec" = dontDistribute super."qd-vec"; "qd-vec" = dontDistribute super."qd-vec";
"qhull-simple" = dontDistribute super."qhull-simple"; "qhull-simple" = dontDistribute super."qhull-simple";
"qrcode" = dontDistribute super."qrcode"; "qrcode" = dontDistribute super."qrcode";
"qt" = dontDistribute super."qt";
"quadratic-irrational" = dontDistribute super."quadratic-irrational"; "quadratic-irrational" = dontDistribute super."quadratic-irrational";
"quantfin" = dontDistribute super."quantfin"; "quantfin" = dontDistribute super."quantfin";
"quantities" = dontDistribute super."quantities"; "quantities" = dontDistribute super."quantities";
@ -6202,6 +6219,7 @@ self: super: {
"random-extras" = dontDistribute super."random-extras"; "random-extras" = dontDistribute super."random-extras";
"random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-hypergeometric" = dontDistribute super."random-hypergeometric";
"random-stream" = dontDistribute super."random-stream"; "random-stream" = dontDistribute super."random-stream";
"random-variates" = dontDistribute super."random-variates";
"randomgen" = dontDistribute super."randomgen"; "randomgen" = dontDistribute super."randomgen";
"randproc" = dontDistribute super."randproc"; "randproc" = dontDistribute super."randproc";
"randsolid" = dontDistribute super."randsolid"; "randsolid" = dontDistribute super."randsolid";
@ -6287,9 +6305,11 @@ self: super: {
"reflection-extras" = dontDistribute super."reflection-extras"; "reflection-extras" = dontDistribute super."reflection-extras";
"reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; "reflection-without-remorse" = dontDistribute super."reflection-without-remorse";
"reflex" = dontDistribute super."reflex"; "reflex" = dontDistribute super."reflex";
"reflex-animation" = dontDistribute super."reflex-animation";
"reflex-dom" = dontDistribute super."reflex-dom"; "reflex-dom" = dontDistribute super."reflex-dom";
"reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib";
"reflex-gloss" = dontDistribute super."reflex-gloss"; "reflex-gloss" = dontDistribute super."reflex-gloss";
"reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene";
"reflex-transformers" = dontDistribute super."reflex-transformers"; "reflex-transformers" = dontDistribute super."reflex-transformers";
"reform" = dontDistribute super."reform"; "reform" = dontDistribute super."reform";
"reform-blaze" = dontDistribute super."reform-blaze"; "reform-blaze" = dontDistribute super."reform-blaze";
@ -6849,6 +6869,7 @@ self: super: {
"snaplet-css-min" = dontDistribute super."snaplet-css-min"; "snaplet-css-min" = dontDistribute super."snaplet-css-min";
"snaplet-environments" = dontDistribute super."snaplet-environments"; "snaplet-environments" = dontDistribute super."snaplet-environments";
"snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11"; "snaplet-fay" = doDistribute super."snaplet-fay_0_3_3_11";
"snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs";
"snaplet-hasql" = dontDistribute super."snaplet-hasql"; "snaplet-hasql" = dontDistribute super."snaplet-hasql";
"snaplet-haxl" = dontDistribute super."snaplet-haxl"; "snaplet-haxl" = dontDistribute super."snaplet-haxl";
"snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; "snaplet-hdbc" = dontDistribute super."snaplet-hdbc";

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