From 392448b5d31f34fa8a84cbc28f22869a28f68f3d Mon Sep 17 00:00:00 2001 From: Matthias Herrmann Date: Tue, 14 Jun 2016 20:42:45 +0200 Subject: [PATCH 01/79] rawtherapee: 4.0 -> 4.2 --- .../graphics/rawtherapee/default.nix | 25 +++++---- .../graphics/rawtherapee/sigc++_fix.patch | 52 +++++++++++++++++++ 2 files changed, 67 insertions(+), 10 deletions(-) create mode 100644 pkgs/applications/graphics/rawtherapee/sigc++_fix.patch diff --git a/pkgs/applications/graphics/rawtherapee/default.nix b/pkgs/applications/graphics/rawtherapee/default.nix index 34ad7821c87..aeb427348ca 100644 --- a/pkgs/applications/graphics/rawtherapee/default.nix +++ b/pkgs/applications/graphics/rawtherapee/default.nix @@ -1,21 +1,26 @@ -{ stdenv, fetchurl, pkgconfig, gtk, cmake, pixman, libpthreadstubs, gtkmm, libXau -, libXdmcp, lcms2, libiptcdata, libcanberra, fftw, expat +{ stdenv, fetchFromGitHub, pkgconfig, gtk, cmake, pixman, libpthreadstubs, gtkmm, libXau +, libXdmcp, lcms2, libiptcdata, libcanberra, fftw, expat, pcre, libsigcxx , mercurial # Not really needed for anything, but it fails if it does not find 'hg' }: stdenv.mkDerivation rec { - name = "rawtherapee-4.0.10"; + name = "rawtherapee-4.2"; - src = fetchurl { - url = http://rawtherapee.googlecode.com/files/rawtherapee-4.0.10.tar.xz; - sha256 = "1ibsdm2kqpw796rcdihnnp67vx0wm1d1bnlzq269r9p01w5s102g"; + src = fetchFromGitHub { + owner = "Beep6581"; + repo = "RawTherapee"; + rev = "4.2"; + sha256 = "1v4px239vlmk9l8wbzlvlyni4ns12icxmgfz21m86jkd10pj5dgr"; }; buildInputs = [ pkgconfig gtk cmake pixman libpthreadstubs gtkmm libXau libXdmcp - lcms2 libiptcdata mercurial libcanberra fftw expat ]; + lcms2 libiptcdata mercurial libcanberra fftw expat pcre libsigcxx ]; - # Disable the use of the RAWZOR propietary libraries - cmakeFlags = [ "-DWITH_RAWZOR=OFF" ]; + patchPhase = '' + patch -p1 < ${./sigc++_fix.patch} + ''; + + NIX_CFLAGS_COMPILE = "-std=gnu++11 -Wno-deprecated-declarations -Wno-unused-result"; enableParallelBuilding = true; @@ -23,7 +28,7 @@ stdenv.mkDerivation rec { description = "RAW converter and digital photo processing software"; homepage = http://www.rawtherapee.com/; license = stdenv.lib.licenses.gpl3Plus; - maintainers = with stdenv.lib.maintainers; [viric jcumming]; + maintainers = with stdenv.lib.maintainers; [viric jcumming mahe]; platforms = with stdenv.lib.platforms; linux; }; } diff --git a/pkgs/applications/graphics/rawtherapee/sigc++_fix.patch b/pkgs/applications/graphics/rawtherapee/sigc++_fix.patch new file mode 100644 index 00000000000..eeeefb733df --- /dev/null +++ b/pkgs/applications/graphics/rawtherapee/sigc++_fix.patch @@ -0,0 +1,52 @@ +diff --git a/rtgui/adjuster.cc b/rtgui/adjuster.cc +index f73dd8a..a7a069c 100644 +--- a/rtgui/adjuster.cc ++++ b/rtgui/adjuster.cc +@@ -17,7 +17,7 @@ + * along with RawTherapee. If not, see . + */ + #include "adjuster.h" +-#include ++#include + #include + #include "multilangmgr.h" + #include "../rtengine/rtengine.h" +diff --git a/rtgui/preferences.cc b/rtgui/preferences.cc +index 134c0d7..8ce1808 100644 +--- a/rtgui/preferences.cc ++++ b/rtgui/preferences.cc +@@ -16,7 +16,7 @@ + * You should have received a copy of the GNU General Public License + * along with RawTherapee. If not, see . + */ +-#include ++#include + #include "preferences.h" + #include "multilangmgr.h" + #include "splash.h" +diff --git a/rtgui/thresholdadjuster.cc b/rtgui/thresholdadjuster.cc +index 6b41329..19cde25 100644 +--- a/rtgui/thresholdadjuster.cc ++++ b/rtgui/thresholdadjuster.cc +@@ -17,7 +17,7 @@ + * along with RawTherapee. If not, see . + */ + #include "thresholdadjuster.h" +-#include ++#include + #include + #include "multilangmgr.h" + #include "../rtengine/rtengine.h" +diff --git a/rtgui/tonecurve.cc b/rtgui/tonecurve.cc +index 2e439e1..5f14200 100644 +--- a/rtgui/tonecurve.cc ++++ b/rtgui/tonecurve.cc +@@ -18,7 +18,7 @@ + */ + #include "tonecurve.h" + #include "adjuster.h" +-#include ++#include + #include + #include "ppversion.h" + #include "edit.h" From 31d3efa0d4836ef863f6db540b0b51712f9b43d4 Mon Sep 17 00:00:00 2001 From: Marc Scholten Date: Thu, 23 Jun 2016 17:14:02 +0200 Subject: [PATCH 02/79] iTerm2: 2.1.4 -> 3.0.2 --- pkgs/applications/misc/iterm2/default.nix | 17 ++++++++++------- .../misc/iterm2/disable_updates.patch | 11 +++++++++++ 2 files changed, 21 insertions(+), 7 deletions(-) create mode 100644 pkgs/applications/misc/iterm2/disable_updates.patch diff --git a/pkgs/applications/misc/iterm2/default.nix b/pkgs/applications/misc/iterm2/default.nix index 4aac8ab72d2..add16365324 100644 --- a/pkgs/applications/misc/iterm2/default.nix +++ b/pkgs/applications/misc/iterm2/default.nix @@ -1,18 +1,21 @@ -{ stdenv, fetchurl, unzip }: +{ stdenv, fetchFromGitHub }: stdenv.mkDerivation rec { name = "iterm2-${version}"; - version = "2.1.4"; + version = "3.0.2"; - src = fetchurl { - url = "https://iterm2.com/downloads/stable/iTerm2-2_1_4.zip"; - sha256 = "1kb4j1p1kxj9dcsd34709bm2870ffzpq6jig6q9ixp08g0zbhqhh"; + src = fetchFromGitHub { + owner = "gnachman"; + repo = "iTerm2"; + rev = "v${version}"; + sha256 = "121g759i814y1g1g1jwhsmxgg4wrzv08vq7a7qwc7b85a17zbd3h"; }; - buildInputs = [ unzip ]; + patches = [ ./disable_updates.patch ]; + makeFlagsArray = ["Deployment"]; installPhase = '' mkdir -p "$out/Applications" - mv "$(pwd)" "$out/Applications/iTerm.app" + mv "build/Deployment/iTerm2.app" "$out/Applications/iTerm.app" ''; meta = { diff --git a/pkgs/applications/misc/iterm2/disable_updates.patch b/pkgs/applications/misc/iterm2/disable_updates.patch new file mode 100644 index 00000000000..e717c58f30f --- /dev/null +++ b/pkgs/applications/misc/iterm2/disable_updates.patch @@ -0,0 +1,11 @@ +--- iTerm2/sources/iTermPreferences.m 2016-06-23 16:55:28.000000000 +0200 ++++ iTerm2/sources/iTermPreferences.m 2016-06-23 16:55:42.000000000 +0200 +@@ -189,7 +189,7 @@ + kPreferenceKeyInstantReplayMemoryMegabytes: @4, + kPreferenceKeySavePasteAndCommandHistory: @NO, + kPreferenceKeyAddBonjourHostsToProfiles: @NO, +- kPreferenceKeyCheckForUpdatesAutomatically: @YES, ++ kPreferenceKeyCheckForUpdatesAutomatically: @NO, + kPreferenceKeyCheckForTestReleases: @NO, + kPreferenceKeyLoadPrefsFromCustomFolder: @NO, + kPreferenceKeyNeverRemindPrefsChangesLostForFileHaveSelection: @NO, From 84a1057b417ce209304b7d78e84c89c066239670 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Thu, 30 Jun 2016 20:22:39 +0800 Subject: [PATCH 03/79] sysstat: 11.0.7 -> 11.2.5 --- pkgs/os-specific/linux/sysstat/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/sysstat/default.nix b/pkgs/os-specific/linux/sysstat/default.nix index 16431c465c1..adfcc76c31c 100644 --- a/pkgs/os-specific/linux/sysstat/default.nix +++ b/pkgs/os-specific/linux/sysstat/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, gettext, bzip2 }: stdenv.mkDerivation rec { - name = "sysstat-11.0.7"; + name = "sysstat-11.2.5"; src = fetchurl { url = "http://perso.orange.fr/sebastien.godard/${name}.tar.xz"; - sha256 = "12j55rdx1hyhsc5qm0anx9h9siaa58lhh9dchp40q4ag2wxamp1r"; + sha256 = "1r7869pnylamjry5f5l5m1jn68v61js9wdkz8yn37a9a2bcrqp2d"; }; buildInputs = [ gettext ]; @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { export SYSTEMCTL=systemctl ''; - makeFlags = "SYSCONFIG_DIR=$(out)/etc IGNORE_MAN_GROUP=y CHOWN=true"; + makeFlags = "SYSCONFIG_DIR=$(out)/etc IGNORE_FILE_ATTRIBUTES=y CHOWN=true"; installTargets = "install_base install_nls install_man"; patches = [ ./install.patch ]; From 2bd7855c46386776a9f9f5b3c1efea47bf44ee14 Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Sun, 3 Jul 2016 00:39:38 +0300 Subject: [PATCH 04/79] guake: add gconf to propagatedUserEnvPkgs This fixes #15978. --- pkgs/applications/misc/guake/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/misc/guake/default.nix b/pkgs/applications/misc/guake/default.nix index 6290f082734..d0ec7b704ac 100644 --- a/pkgs/applications/misc/guake/default.nix +++ b/pkgs/applications/misc/guake/default.nix @@ -30,6 +30,8 @@ let inputs = [ dbus gtk2 gconf python2 libutempter vte keybinder gnome3.gnome_co buildInputs = inputs ++ (with python2Packages; [ pyGtkGlade pyxdg ]); + propagatedUserEnvPkgs = [ gconf.out ]; + patchPhase = '' patchShebangs . ''; From 58c00c35bc266b1c315de130e9f091d6993b755b Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Mon, 20 Jun 2016 20:45:56 +0800 Subject: [PATCH 05/79] libyamlcpp: 0.5.1 -> 0.5.3 --- .../libraries/libyaml-cpp/default.nix | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/libyaml-cpp/default.nix b/pkgs/development/libraries/libyaml-cpp/default.nix index f56bf77abfe..ef806bce123 100644 --- a/pkgs/development/libraries/libyaml-cpp/default.nix +++ b/pkgs/development/libraries/libyaml-cpp/default.nix @@ -1,11 +1,14 @@ -{ stdenv, fetchurl, cmake, boost, makePIC ? false }: +{ stdenv, fetchFromGitHub, cmake, boost, makePIC ? false }: -stdenv.mkDerivation { - name = "libyaml-cpp-0.5.1"; +stdenv.mkDerivation rec { + name = "libyaml-cpp-${version}"; + version = "0.5.3"; - src = fetchurl { - url = http://yaml-cpp.googlecode.com/files/yaml-cpp-0.5.1.tar.gz; - sha256 = "01kg0h8ksp162kdhyzn67vnlxpj5zjbks84sh50pv61xni990z1y"; + src = fetchFromGitHub { + owner = "jbeder"; + repo = "yaml-cpp"; + rev = "release-${version}"; + sha256 = "0qr286q8mwbr4cxz0y0rf045zc071qh3cb804by6w1ydlqciih8a"; }; buildInputs = [ cmake boost ]; @@ -13,7 +16,7 @@ stdenv.mkDerivation { cmakeFlags = stdenv.lib.optionals makePIC [ "-DCMAKE_C_FLAGS=-fPIC" "-DCMAKE_CXX_FLAGS=-fPIC" ]; meta = with stdenv.lib; { - homepage = http://code.google.com/p/yaml-cpp/; + inherit (src.meta) homepage; description = "A YAML parser and emitter for C++"; license = licenses.mit; platforms = platforms.unix; From c1a202de051c197675d3ae67dd0d934329309090 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Mon, 4 Jul 2016 15:06:13 +0100 Subject: [PATCH 06/79] shadow: fix passthru The shadow package's shellPath wasn't detected properly Fixes #16428 --- pkgs/os-specific/linux/shadow/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/shadow/default.nix b/pkgs/os-specific/linux/shadow/default.nix index 7f0d40f6be1..ec3e9b14d2a 100644 --- a/pkgs/os-specific/linux/shadow/default.nix +++ b/pkgs/os-specific/linux/shadow/default.nix @@ -53,8 +53,9 @@ stdenv.mkDerivation rec { meta = { homepage = http://pkg-shadow.alioth.debian.org/; description = "Suite containing authentication-related tools such as passwd and su"; - passthru = { - shellPath = "/bin/nologin"; - }; + }; + + passthru = { + shellPath = "/bin/nologin"; }; } From 6df0bff9085d8067a123be5f0f435ad7bbed6d25 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Mon, 4 Jul 2016 15:10:51 +0100 Subject: [PATCH 07/79] nixos: throw an error on invalid shell package All shell packages must export the shellPath passthru --- nixos/lib/utils.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/lib/utils.nix b/nixos/lib/utils.nix index 871fbb121d0..40d0854d968 100644 --- a/nixos/lib/utils.nix +++ b/nixos/lib/utils.nix @@ -12,6 +12,8 @@ rec { toShellPath = shell: if types.shellPackage.check shell then "/run/current-system/sw${shell.shellPath}" + else if types.package.check shell then + throw "${shell} is not a shell package" else shell; } From f8560212ca3e18297b23c5fc8a08610f4440355b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Tue, 5 Jul 2016 13:23:49 +0200 Subject: [PATCH 08/79] nixos/spacefm: unbreak manual build Fixup regression introduced in commit 1bbcd91b2ef0738709f7d95 ("spacefm: sudo and gksu fixes #15758 and license update"). A missing end tag caused this: $ nixos-rebuild build ... options-db.xml:4402: parser error : Opening and ending tag mismatch: filename line 4401 and para Type: booleanDefault:/etc/spacefm/spacefm.conf. + Whether to install SpaceFM and create /etc/spacefm/spacefm.conf. ''; }; From 0efd18746abd338d670ab82fa0d9e5411fd53329 Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Tue, 5 Jul 2016 13:58:26 +0300 Subject: [PATCH 09/79] sigil: 0.7.4 > 0.9.6 --- pkgs/applications/editors/sigil/default.nix | 71 +++++++-------------- 1 file changed, 23 insertions(+), 48 deletions(-) diff --git a/pkgs/applications/editors/sigil/default.nix b/pkgs/applications/editors/sigil/default.nix index ad6f599a361..ed72043d723 100644 --- a/pkgs/applications/editors/sigil/default.nix +++ b/pkgs/applications/editors/sigil/default.nix @@ -1,67 +1,42 @@ -{ stdenv, fetchurl, unzip, cmake, pkgconfig, makeWrapper -, hunspell, minizip, boost, xercesc +{ stdenv, fetchFromGitHub, cmake, pkgconfig, makeWrapper +, boost, xercesc , qtbase, qttools, qtwebkit, qtxmlpatterns +, python3, python3Packages }: -let - version = "0.7.4"; - -in - stdenv.mkDerivation rec { name = "sigil-${version}"; + version = "0.9.6"; - src = fetchurl { - url = "https://sigil.googlecode.com/files/Sigil-${version}-Code.zip"; - sha256 = "68c7ca15ea8611921af0c435369563f55c6afd2ef1fb0945cf6c4a47429b0fb5"; + src = fetchFromGitHub { + sha256 = "0hihd5f3avpdvxwp5j80qdg74zbw7p20y6j9q8cw7wd0bak58h9c"; + rev = version; + repo = "Sigil"; + owner = "Sigil-Ebook"; }; + pythonPath = with python3Packages; [ lxml ]; + + propagatedBuildInputs = with python3Packages; [ lxml ]; + buildInputs = [ - unzip cmake pkgconfig - hunspell minizip boost xercesc qtbase qttools qtwebkit qtxmlpatterns + cmake pkgconfig + boost xercesc qtbase qttools qtwebkit qtxmlpatterns + python3 python3Packages.lxml makeWrapper ]; - # XXX: the compiler seems to treat the .h file inappropriately: - # - # COMMAND ${CMAKE_CXX_COMPILER} ${compile_flags} \ - # ${CMAKE_CURRENT_SOURCE_DIR}/${header_name}.h \ - # -o ${header_name}.h.gch - # - # but using -c or -x c++-header seems to work: - # - # COMMAND ${CMAKE_CXX_COMPILER} ${compile_flags} \ - # -c ${CMAKE_CURRENT_SOURCE_DIR}/${header_name}.h \ - # -o ${header_name}.h.gch - # - # COMMAND ${CMAKE_CXX_COMPILER} ${compile_flags} \ - # -x c++-header ${CMAKE_CURRENT_SOURCE_DIR}/${header_name}.h \ - # -o ${header_name}.h.gch - # - # Might be related to: - # - # http://permalink.gmane.org/gmane.comp.gcc.bugs/361195 - buildCommand = '' - mkdir -pv $out - mkdir -pv ${name}/src ${name}/build ${name}/run - cd ${name}/src - unzip -n ${src} - sed -i \ - -e 's|\(COMMAND\) \([^ ]\+\) \([^ ]\+\) \(.*\)|\1 \2 \3 -c \4|' \ - cmake_extras/CustomPCH.cmake - cd ../build - cmake -G "Unix Makefiles" \ - -DCMAKE_INSTALL_PREFIX=$out \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_SKIP_BUILD_RPATH=ON \ - ../src - make - make install + preFixup = '' + wrapProgram "$out/bin/sigil" \ + --prefix PYTHONPATH : $PYTHONPATH:$(toPythonPath ${python3Packages.lxml}) ''; + enableParallelBuilding = true; + meta = { description = "Free, open source, multi-platform ebook (ePub) editor"; - homepage = https://code.google.com/p/sigil/; + homepage = https://github.com/Sigil-Ebook/Sigil/; license = stdenv.lib.licenses.gpl3; inherit version; + maintainers = with stdenv.lib.maintainers; [ ramkromberg ]; }; } From 881ba7309cad8e29839069d48183d12d07ef5e3a Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Tue, 5 Jul 2016 13:14:58 -0700 Subject: [PATCH 10/79] wxsqliteplus: init at 0.3.6 --- .../libraries/wxsqliteplus/default.nix | 38 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++ 2 files changed, 42 insertions(+) create mode 100644 pkgs/development/libraries/wxsqliteplus/default.nix diff --git a/pkgs/development/libraries/wxsqliteplus/default.nix b/pkgs/development/libraries/wxsqliteplus/default.nix new file mode 100644 index 00000000000..998f6a9e5f6 --- /dev/null +++ b/pkgs/development/libraries/wxsqliteplus/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchFromGitHub, wxGTK, wxsqlite3, sqlite }: + +stdenv.mkDerivation rec { + name = "wxsqliteplus-${version}"; + version = "0.3.6"; + + src = fetchFromGitHub { + owner = "guanlisheng"; + repo = "wxsqliteplus"; + rev = "v${version}"; + sha1 = "yr9ysviv4hbrxn900z1wz8j32frimvx1"; + }; + + buildInputs = [ wxGTK wxsqlite3 sqlite ]; + + makeFlags = [ + "LDFLAGS=-L${wxsqlite3}/lib" + ]; + + preBuild = '' + sed -ie 's|all: $(LIBPREFIX)wxsqlite$(LIBEXT)|all: |g' Makefile + sed -ie 's|wxsqliteplus$(EXEEXT): $(WXSQLITEPLUS_OBJECTS) $(LIBPREFIX)wxsqlite$(LIBEXT)|wxsqliteplus$(EXEEXT): $(WXSQLITEPLUS_OBJECTS) |g' Makefile + sed -ie 's|-lwxsqlite |-lwxcode_gtk2u_wxsqlite3-3.0 |g' Makefile + ''; + + installPhase = '' + mkdir -p $out/bin + cp wxsqliteplus $out/bin/ + ''; + + meta = with stdenv.lib; { + homepage = http://guanlisheng.com/; + description = "A simple SQLite database browser built with wxWidgets"; + platforms = platforms.unix; + maintainers = with maintainers; [ vrthra ]; + license = licenses.gpl2; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b056fa69990..eee9c03cec6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17204,6 +17204,10 @@ in wxGTK = wxGTK30; }; + wxsqliteplus = callPackage ../development/libraries/wxsqliteplus { + wxGTK = wxGTK30; + }; + x2x = callPackage ../tools/X11/x2x { }; xboxdrv = callPackage ../misc/drivers/xboxdrv { }; From beec2ba1276ef2d4db9525131c7ad6f8b4daecdd Mon Sep 17 00:00:00 2001 From: mimadrid Date: Tue, 5 Jul 2016 22:54:14 +0200 Subject: [PATCH 11/79] diff-so-fancy: 0.9.3 -> 0.10.0 --- .../git-and-tools/diff-so-fancy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/diff-so-fancy/default.nix b/pkgs/applications/version-management/git-and-tools/diff-so-fancy/default.nix index b29b1f90b5c..8f96f36cf86 100644 --- a/pkgs/applications/version-management/git-and-tools/diff-so-fancy/default.nix +++ b/pkgs/applications/version-management/git-and-tools/diff-so-fancy/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { name = "diff-so-fancy-${version}"; - version = "0.9.3"; + version = "0.10.0"; # perl is needed here so patchShebangs can do its job buildInputs = [perl makeWrapper]; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { owner = "so-fancy"; repo = "diff-so-fancy"; rev = "v${version}"; - sha256 = "0b5k54h3l4z81p6f7n14g2r5vz7qdyyrbql0z7rwhb7sw7s7zrgx"; + sha256 = "08dv9xlrsyjr1ylm83lbsv2p5asfia4ib97bwgcacsdxxh5zyqh9"; }; buildPhase = null; From eaeb69c46e83e6bd6f72e425eccf5a982ad29631 Mon Sep 17 00:00:00 2001 From: mimadrid Date: Tue, 5 Jul 2016 22:59:29 +0200 Subject: [PATCH 12/79] cherrytree: 0.35.9 -> 0.37.1 --- pkgs/applications/misc/cherrytree/default.nix | 14 +++++++------- pkgs/applications/misc/cherrytree/subprocess.patch | 7 +++---- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/misc/cherrytree/default.nix b/pkgs/applications/misc/cherrytree/default.nix index 97b67a3ae33..72049c21b12 100644 --- a/pkgs/applications/misc/cherrytree/default.nix +++ b/pkgs/applications/misc/cherrytree/default.nix @@ -4,11 +4,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "cherrytree-${version}"; - version = "0.35.9"; + version = "0.37.1"; src = fetchurl { url = "http://www.giuspen.com/software/${name}.tar.xz"; - sha256 = "14yahp0y13z3xkpwvprm7q9x3rj6jbzi0bryqlsn3bbafdq7wnac"; + sha256 = "45f1cee4067598cf2ca8ae6f89d03789b86f9e3bf196236119868653420d7cdd"; }; propagatedBuildInputs = with pythonPackages; @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { doCheck = false; - meta = { + meta = { description = "An hierarchical note taking application"; longDescription = '' Cherrytree is an hierarchical note taking application, @@ -44,10 +44,10 @@ stdenv.mkDerivation rec { documents. All those little bits of information you have scattered around your hard drive can be conveniently placed into a Cherrytree document where you can easily find it. - ''; + ''; homepage = http://www.giuspen.com/cherrytree; license = licenses.gpl3; - platforms = platforms.linux; - maintainers = [ maintainers.AndersonTorres ]; - }; + platforms = platforms.linux; + maintainers = [ maintainers.AndersonTorres ]; + }; } diff --git a/pkgs/applications/misc/cherrytree/subprocess.patch b/pkgs/applications/misc/cherrytree/subprocess.patch index cff357a5693..1f80cde03b7 100644 --- a/pkgs/applications/misc/cherrytree/subprocess.patch +++ b/pkgs/applications/misc/cherrytree/subprocess.patch @@ -1,6 +1,6 @@ -diff -Naur cherrytree-0.35.6-orig/setup.py cherrytree-0.35.6/setup.py ---- cherrytree-0.35.6-orig/setup.py 2014-05-30 23:25:11.000000000 +0200 -+++ cherrytree-0.35.6/setup.py 2015-01-29 07:35:32.785904009 +0100 +diff -Naur cherrytree-0.37.1-orig/setup.py cherrytree-0.37.1/setup.py +--- cherrytree-0.37.1-orig/setup.py 2016-01-08 20:50:50.000000000 +0100 ++++ cherrytree-0.37.1/setup.py 2016-07-05 20:30:27.768178682 +0200 @@ -205,4 +205,9 @@ }, distclass=CherryTreeDist @@ -12,4 +12,3 @@ diff -Naur cherrytree-0.35.6-orig/setup.py cherrytree-0.35.6/setup.py + pass # handle errors in the called executable + except OSError: + pass # executable not found - From a828d79a8a896c1bfbbea18a00ac542218c06e4f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 3 Jul 2016 00:36:43 +0200 Subject: [PATCH 13/79] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v2.0-2-g0bc3d6d using the following inputs: - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/fcabbcc70b8550e9f23094cd3f0d96d9bbafe925 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/52eeaf4edc30c81a4fbeddc7b7b01530052a1835 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/ff50bc1a46558a6e060888b0f655c453d277eeed --- .../haskell-modules/configuration-lts-0.0.nix | 12 + .../haskell-modules/configuration-lts-0.1.nix | 12 + .../haskell-modules/configuration-lts-0.2.nix | 12 + .../haskell-modules/configuration-lts-0.3.nix | 12 + .../haskell-modules/configuration-lts-0.4.nix | 12 + .../haskell-modules/configuration-lts-0.5.nix | 12 + .../haskell-modules/configuration-lts-0.6.nix | 12 + .../haskell-modules/configuration-lts-0.7.nix | 12 + .../haskell-modules/configuration-lts-1.0.nix | 12 + .../haskell-modules/configuration-lts-1.1.nix | 12 + .../configuration-lts-1.10.nix | 12 + .../configuration-lts-1.11.nix | 12 + .../configuration-lts-1.12.nix | 12 + .../configuration-lts-1.13.nix | 12 + .../configuration-lts-1.14.nix | 12 + .../configuration-lts-1.15.nix | 12 + .../haskell-modules/configuration-lts-1.2.nix | 12 + .../haskell-modules/configuration-lts-1.4.nix | 12 + .../haskell-modules/configuration-lts-1.5.nix | 12 + .../haskell-modules/configuration-lts-1.7.nix | 12 + .../haskell-modules/configuration-lts-1.8.nix | 12 + .../haskell-modules/configuration-lts-1.9.nix | 12 + .../haskell-modules/configuration-lts-2.0.nix | 12 + .../haskell-modules/configuration-lts-2.1.nix | 12 + .../configuration-lts-2.10.nix | 12 + .../configuration-lts-2.11.nix | 12 + .../configuration-lts-2.12.nix | 12 + .../configuration-lts-2.13.nix | 12 + .../configuration-lts-2.14.nix | 12 + .../configuration-lts-2.15.nix | 12 + .../configuration-lts-2.16.nix | 12 + .../configuration-lts-2.17.nix | 12 + .../configuration-lts-2.18.nix | 12 + .../configuration-lts-2.19.nix | 12 + .../haskell-modules/configuration-lts-2.2.nix | 12 + .../configuration-lts-2.20.nix | 12 + .../configuration-lts-2.21.nix | 12 + .../configuration-lts-2.22.nix | 12 + .../haskell-modules/configuration-lts-2.3.nix | 12 + .../haskell-modules/configuration-lts-2.4.nix | 12 + .../haskell-modules/configuration-lts-2.5.nix | 12 + .../haskell-modules/configuration-lts-2.6.nix | 12 + .../haskell-modules/configuration-lts-2.7.nix | 12 + .../haskell-modules/configuration-lts-2.8.nix | 12 + .../haskell-modules/configuration-lts-2.9.nix | 12 + .../haskell-modules/configuration-lts-3.0.nix | 13 + .../haskell-modules/configuration-lts-3.1.nix | 13 + .../configuration-lts-3.10.nix | 14 + .../configuration-lts-3.11.nix | 14 + .../configuration-lts-3.12.nix | 14 + .../configuration-lts-3.13.nix | 14 + .../configuration-lts-3.14.nix | 14 + .../configuration-lts-3.15.nix | 14 + .../configuration-lts-3.16.nix | 14 + .../configuration-lts-3.17.nix | 14 + .../configuration-lts-3.18.nix | 14 + .../configuration-lts-3.19.nix | 14 + .../haskell-modules/configuration-lts-3.2.nix | 13 + .../configuration-lts-3.20.nix | 14 + .../configuration-lts-3.21.nix | 14 + .../configuration-lts-3.22.nix | 14 + .../haskell-modules/configuration-lts-3.3.nix | 13 + .../haskell-modules/configuration-lts-3.4.nix | 13 + .../haskell-modules/configuration-lts-3.5.nix | 13 + .../haskell-modules/configuration-lts-3.6.nix | 14 + .../haskell-modules/configuration-lts-3.7.nix | 14 + .../haskell-modules/configuration-lts-3.8.nix | 14 + .../haskell-modules/configuration-lts-3.9.nix | 14 + .../haskell-modules/configuration-lts-4.0.nix | 15 + .../haskell-modules/configuration-lts-4.1.nix | 15 + .../haskell-modules/configuration-lts-4.2.nix | 15 + .../haskell-modules/configuration-lts-5.0.nix | 15 + .../haskell-modules/configuration-lts-5.1.nix | 15 + .../configuration-lts-5.10.nix | 18 + .../configuration-lts-5.11.nix | 19 + .../configuration-lts-5.12.nix | 20 + .../configuration-lts-5.13.nix | 22 + .../configuration-lts-5.14.nix | 24 + .../configuration-lts-5.15.nix | 24 + .../configuration-lts-5.16.nix | 25 + .../configuration-lts-5.17.nix | 25 + .../configuration-lts-5.18.nix | 25 + .../haskell-modules/configuration-lts-5.2.nix | 16 + .../haskell-modules/configuration-lts-5.3.nix | 17 + .../haskell-modules/configuration-lts-5.4.nix | 17 + .../haskell-modules/configuration-lts-5.5.nix | 17 + .../haskell-modules/configuration-lts-5.6.nix | 17 + .../haskell-modules/configuration-lts-5.7.nix | 17 + .../haskell-modules/configuration-lts-5.8.nix | 17 + .../haskell-modules/configuration-lts-5.9.nix | 18 + .../haskell-modules/configuration-lts-6.0.nix | 28 + .../haskell-modules/configuration-lts-6.1.nix | 28 + .../haskell-modules/configuration-lts-6.2.nix | 29 + .../haskell-modules/configuration-lts-6.3.nix | 33 + .../haskell-modules/configuration-lts-6.4.nix | 38 + .../haskell-modules/configuration-lts-6.5.nix | 39 + .../haskell-modules/configuration-lts-6.6.nix | 8102 +++++++++++++++++ .../haskell-modules/hackage-packages.nix | 1344 ++- 98 files changed, 10710 insertions(+), 200 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-6.6.nix diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index cab7908ffca..590b76b5ae0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -5784,6 +5784,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6060,6 +6061,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6096,6 +6098,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6207,6 +6210,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6958,6 +6962,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_1"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7824,6 +7829,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8109,6 +8115,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8445,6 +8452,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8599,6 +8607,7 @@ self: super: { "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu" = doDistribute super."text-icu_0_7_0_0"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9230,6 +9239,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9267,6 +9277,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9520,6 +9531,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_5"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 6ae32a549d3..a7524970851 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -5784,6 +5784,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6060,6 +6061,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6096,6 +6098,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6207,6 +6210,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6958,6 +6962,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_1_1"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7824,6 +7829,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8109,6 +8115,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8445,6 +8452,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8599,6 +8607,7 @@ self: super: { "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu" = doDistribute super."text-icu_0_7_0_0"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9230,6 +9239,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9267,6 +9277,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9520,6 +9531,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_5"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index ad1acec8173..6bb502e2d2d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -5784,6 +5784,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6060,6 +6061,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6096,6 +6098,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6207,6 +6210,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6958,6 +6962,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_1_1"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7824,6 +7829,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8109,6 +8115,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8445,6 +8452,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8599,6 +8607,7 @@ self: super: { "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu" = doDistribute super."text-icu_0_7_0_0"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9230,6 +9239,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9267,6 +9277,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9520,6 +9531,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_5"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index e8f0a451663..5046049de44 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -5784,6 +5784,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6060,6 +6061,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6096,6 +6098,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6207,6 +6210,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6958,6 +6962,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_1_1"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7824,6 +7829,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8109,6 +8115,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8445,6 +8452,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8599,6 +8607,7 @@ self: super: { "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu" = doDistribute super."text-icu_0_7_0_0"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9230,6 +9239,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9267,6 +9277,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9520,6 +9531,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_5"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index df566d1bb63..5e0ea64d009 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -5782,6 +5782,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6058,6 +6059,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6094,6 +6096,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6205,6 +6208,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6956,6 +6960,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_1_1"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7821,6 +7826,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8106,6 +8112,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8442,6 +8449,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8596,6 +8604,7 @@ self: super: { "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu" = doDistribute super."text-icu_0_7_0_0"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9227,6 +9236,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9264,6 +9274,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9517,6 +9528,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_6"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 78c050acffe..031f0c6c856 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -5782,6 +5782,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6058,6 +6059,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6094,6 +6096,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6205,6 +6208,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6956,6 +6960,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_1_1"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7821,6 +7826,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8106,6 +8112,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8442,6 +8449,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8596,6 +8604,7 @@ self: super: { "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu" = doDistribute super."text-icu_0_7_0_0"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9227,6 +9236,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9264,6 +9274,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9517,6 +9528,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_6"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index d6b31a68b50..64066a0b528 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -5780,6 +5780,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6056,6 +6057,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6092,6 +6094,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6203,6 +6206,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6954,6 +6958,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_1_1"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7818,6 +7823,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8103,6 +8109,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8439,6 +8446,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8593,6 +8601,7 @@ self: super: { "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu" = doDistribute super."text-icu_0_7_0_0"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9224,6 +9233,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9261,6 +9271,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9513,6 +9524,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_6"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index f103dbeb3da..e463801153b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -5780,6 +5780,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6056,6 +6057,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6092,6 +6094,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6203,6 +6206,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_6_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6954,6 +6958,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_1_1"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7818,6 +7823,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8103,6 +8109,7 @@ self: super: { "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8439,6 +8446,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8593,6 +8601,7 @@ self: super: { "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu" = doDistribute super."text-icu_0_7_0_0"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9224,6 +9233,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9261,6 +9271,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9513,6 +9524,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_6"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 5a47a3c9405..75a1000888a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -5773,6 +5773,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6049,6 +6050,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6085,6 +6087,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6196,6 +6199,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6947,6 +6951,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7810,6 +7815,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8094,6 +8100,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8430,6 +8437,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8584,6 +8592,7 @@ self: super: { "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; "text-icu" = doDistribute super."text-icu_0_7_0_0"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9214,6 +9223,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9251,6 +9261,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9503,6 +9514,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_6"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index a3e570e4718..f23a4fb9482 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -5767,6 +5767,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6043,6 +6044,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6078,6 +6080,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6189,6 +6192,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6940,6 +6944,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7803,6 +7808,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8086,6 +8092,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8421,6 +8428,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8573,6 +8581,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9203,6 +9212,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9240,6 +9250,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9492,6 +9503,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_6"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 92a731b1593..1cccadc95ec 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -5750,6 +5750,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6026,6 +6027,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6061,6 +6063,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6172,6 +6175,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6921,6 +6925,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7783,6 +7788,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8065,6 +8071,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8400,6 +8407,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8550,6 +8558,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9177,6 +9186,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9214,6 +9224,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9464,6 +9475,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_6"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index ef55a06e157..d0aeca23fba 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -5747,6 +5747,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6023,6 +6024,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6058,6 +6060,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6169,6 +6172,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6918,6 +6922,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7780,6 +7785,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8062,6 +8068,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8397,6 +8404,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8547,6 +8555,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9174,6 +9183,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9211,6 +9221,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9461,6 +9472,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_7"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index c0ccbd2f4f8..70f2b5eb90c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -5747,6 +5747,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6023,6 +6024,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6058,6 +6060,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6169,6 +6172,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6918,6 +6922,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7780,6 +7785,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8062,6 +8068,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8397,6 +8404,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8547,6 +8555,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9174,6 +9183,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9211,6 +9221,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9461,6 +9472,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_7"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 8283bb3e921..c148a475d28 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -5746,6 +5746,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6022,6 +6023,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6057,6 +6059,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6168,6 +6171,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6917,6 +6921,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7779,6 +7784,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8061,6 +8067,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8396,6 +8403,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8545,6 +8553,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9172,6 +9181,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9209,6 +9219,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9459,6 +9470,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_7"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 976218b2bfc..1543e1e1f53 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -5743,6 +5743,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6019,6 +6020,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6054,6 +6056,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6165,6 +6168,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6914,6 +6918,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7775,6 +7780,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8057,6 +8063,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8392,6 +8399,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8541,6 +8549,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9168,6 +9177,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9205,6 +9215,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9455,6 +9466,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_7"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index a2a05f7fa0c..7bee95b1a11 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -5740,6 +5740,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6016,6 +6017,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6051,6 +6053,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6162,6 +6165,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6909,6 +6913,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7769,6 +7774,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8051,6 +8057,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8385,6 +8392,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8534,6 +8542,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9161,6 +9170,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; @@ -9198,6 +9208,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9447,6 +9458,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_7"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index cc99fbe3484..b5eeb56240c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -5764,6 +5764,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6040,6 +6041,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6075,6 +6077,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6186,6 +6189,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6936,6 +6940,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7798,6 +7803,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8081,6 +8087,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8416,6 +8423,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8568,6 +8576,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9198,6 +9207,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9235,6 +9245,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9487,6 +9498,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_6"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index ad0c3320a05..01ecfcea59c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -5761,6 +5761,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6037,6 +6038,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6072,6 +6074,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6183,6 +6186,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6932,6 +6936,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7794,6 +7799,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8077,6 +8083,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8412,6 +8419,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8563,6 +8571,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9193,6 +9202,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9230,6 +9240,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9482,6 +9493,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_6"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 6cb5b98c90b..1f82e62c5d7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -5760,6 +5760,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6036,6 +6037,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6071,6 +6073,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6182,6 +6185,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6931,6 +6935,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7793,6 +7798,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8076,6 +8082,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8411,6 +8418,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8562,6 +8570,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9190,6 +9199,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9227,6 +9237,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9479,6 +9490,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_6"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 8e7f77c220a..aaf40fa4264 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -5755,6 +5755,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6031,6 +6032,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6066,6 +6068,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6177,6 +6180,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6926,6 +6930,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7788,6 +7793,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8071,6 +8077,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8406,6 +8413,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8557,6 +8565,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9185,6 +9194,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9222,6 +9232,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9474,6 +9485,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_6"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index f20f6c31e45..03ae781ccc9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -5751,6 +5751,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6027,6 +6028,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6062,6 +6064,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6173,6 +6176,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6922,6 +6926,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7784,6 +7789,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8067,6 +8073,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8402,6 +8409,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8553,6 +8561,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9180,6 +9189,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9217,6 +9227,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9469,6 +9480,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_6"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index f1df5f76b38..6b3e16f25de 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -5750,6 +5750,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -6026,6 +6027,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6061,6 +6063,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6172,6 +6175,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_7_0"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6921,6 +6925,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7783,6 +7788,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8066,6 +8072,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8401,6 +8408,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8552,6 +8560,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9179,6 +9188,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; @@ -9216,6 +9226,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9468,6 +9479,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_6"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 9f5fb9b57c7..5bcbdd5ffdb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -5715,6 +5715,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5989,6 +5990,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6024,6 +6026,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6131,6 +6134,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6873,6 +6877,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7733,6 +7738,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8011,6 +8017,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8343,6 +8350,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8492,6 +8500,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9117,6 +9126,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; @@ -9153,6 +9163,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9398,6 +9409,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_7"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 056faf91ed5..b060c6e6634 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -5715,6 +5715,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5989,6 +5990,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6024,6 +6026,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6131,6 +6134,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6873,6 +6877,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7733,6 +7738,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8011,6 +8017,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8343,6 +8350,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8492,6 +8500,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9117,6 +9126,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; @@ -9153,6 +9163,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9398,6 +9409,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_7"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index f8f56fe41f2..6cec44e5d40 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -5696,6 +5696,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5970,6 +5971,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6005,6 +6007,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6112,6 +6115,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6853,6 +6857,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7710,6 +7715,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -7987,6 +7993,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8312,6 +8319,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8461,6 +8469,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9084,6 +9093,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; @@ -9120,6 +9130,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9363,6 +9374,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index e34cb473c32..7d1d92c6f52 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -5695,6 +5695,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5969,6 +5970,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6004,6 +6006,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6111,6 +6114,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6851,6 +6855,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7707,6 +7712,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -7984,6 +7990,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8308,6 +8315,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8457,6 +8465,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9080,6 +9089,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; @@ -9116,6 +9126,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9359,6 +9370,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 193312bc6a5..c8ed26f3045 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -5695,6 +5695,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5969,6 +5970,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6004,6 +6006,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6111,6 +6114,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6851,6 +6855,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7706,6 +7711,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -7983,6 +7989,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8307,6 +8314,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8456,6 +8464,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9079,6 +9088,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; @@ -9115,6 +9125,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9358,6 +9369,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 82c63445fcc..a69b62f84f7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -5694,6 +5694,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5968,6 +5969,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6003,6 +6005,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6110,6 +6113,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6850,6 +6854,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7705,6 +7710,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -7982,6 +7988,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8306,6 +8313,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8455,6 +8463,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9078,6 +9087,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; @@ -9114,6 +9124,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9357,6 +9368,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 553ab813a29..2235602b613 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -5692,6 +5692,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5966,6 +5967,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6001,6 +6003,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6108,6 +6111,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6848,6 +6852,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7703,6 +7708,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -7980,6 +7986,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8304,6 +8311,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8453,6 +8461,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9076,6 +9085,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -9112,6 +9122,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9354,6 +9365,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index d82eb59a27c..b16192762e2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -5691,6 +5691,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5965,6 +5966,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6000,6 +6002,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6106,6 +6109,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6846,6 +6850,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7701,6 +7706,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -7978,6 +7984,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8301,6 +8308,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8450,6 +8458,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9073,6 +9082,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -9109,6 +9119,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9351,6 +9362,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 9dd4e90014c..02c470ec797 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -5687,6 +5687,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5961,6 +5962,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5996,6 +5998,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6102,6 +6105,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6842,6 +6846,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7697,6 +7702,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -7974,6 +7980,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8297,6 +8304,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8446,6 +8454,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9069,6 +9078,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -9105,6 +9115,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9347,6 +9358,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 9b73b4f5505..90776befb76 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -5684,6 +5684,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5958,6 +5959,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5993,6 +5995,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6099,6 +6102,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6838,6 +6842,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7693,6 +7698,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -7970,6 +7976,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8293,6 +8300,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8442,6 +8450,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9065,6 +9074,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -9101,6 +9111,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9343,6 +9354,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index ff433cd23ce..464bf649b25 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -5682,6 +5682,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5956,6 +5957,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5991,6 +5993,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6097,6 +6100,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6835,6 +6839,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7690,6 +7695,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -7967,6 +7973,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8290,6 +8297,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8439,6 +8447,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9062,6 +9071,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -9098,6 +9108,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9339,6 +9350,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index b76c78ae5d8..a0ad91be41a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -5681,6 +5681,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5955,6 +5956,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5990,6 +5992,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6096,6 +6099,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6834,6 +6838,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7689,6 +7694,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -7966,6 +7972,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8289,6 +8296,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8438,6 +8446,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9061,6 +9070,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -9097,6 +9107,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9338,6 +9349,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 983719517af..25c43cfd7d4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -5713,6 +5713,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5987,6 +5988,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6022,6 +6024,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6129,6 +6132,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6871,6 +6875,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7731,6 +7736,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8009,6 +8015,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8341,6 +8348,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8490,6 +8498,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9115,6 +9124,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; @@ -9151,6 +9161,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9395,6 +9406,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_7"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index aaf0d20df8a..177dd13e9e7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -5681,6 +5681,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5955,6 +5956,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5990,6 +5992,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6096,6 +6099,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6834,6 +6838,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7689,6 +7694,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -7965,6 +7971,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8288,6 +8295,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8437,6 +8445,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9060,6 +9069,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -9096,6 +9106,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9337,6 +9348,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index ce34eda6f2d..3419fd18d01 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -5681,6 +5681,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5955,6 +5956,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5990,6 +5992,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6096,6 +6099,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6834,6 +6838,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7688,6 +7693,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -7964,6 +7970,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8287,6 +8294,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8436,6 +8444,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9059,6 +9068,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -9095,6 +9105,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9336,6 +9347,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 521028bd21c..57a76f05f2e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -5680,6 +5680,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5954,6 +5955,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5989,6 +5991,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6095,6 +6098,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6833,6 +6837,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7687,6 +7692,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -7963,6 +7969,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8286,6 +8293,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8435,6 +8443,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9058,6 +9067,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -9094,6 +9104,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9335,6 +9346,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 96125eda543..bba4a81b515 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -5711,6 +5711,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5985,6 +5986,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6020,6 +6022,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6127,6 +6130,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6869,6 +6873,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7729,6 +7734,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8007,6 +8013,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8339,6 +8346,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8488,6 +8496,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9113,6 +9122,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; @@ -9149,6 +9159,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9393,6 +9404,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_7"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 4ee8b59c675..8988afda5f7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -5711,6 +5711,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5985,6 +5986,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6020,6 +6022,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6127,6 +6130,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6868,6 +6872,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7727,6 +7732,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8005,6 +8011,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8337,6 +8344,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8486,6 +8494,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9111,6 +9120,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; @@ -9147,6 +9157,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9391,6 +9402,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_7"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 8b4bef109d8..7c0907ed947 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -5710,6 +5710,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5984,6 +5985,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6019,6 +6021,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6126,6 +6129,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6867,6 +6871,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7726,6 +7731,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8004,6 +8010,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8336,6 +8343,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8485,6 +8493,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9110,6 +9119,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; @@ -9146,6 +9156,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9390,6 +9401,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_7"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index b6a0f52185a..51ef80a6efe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -5707,6 +5707,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5981,6 +5982,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6016,6 +6018,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6123,6 +6126,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6863,6 +6867,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7722,6 +7727,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8000,6 +8006,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8332,6 +8339,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8481,6 +8489,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9104,6 +9113,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; @@ -9140,6 +9150,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9384,6 +9395,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 09392d0f949..f0369c778ea 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -5707,6 +5707,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5981,6 +5982,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6016,6 +6018,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6123,6 +6126,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6864,6 +6868,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7723,6 +7728,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -8001,6 +8007,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8333,6 +8340,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8482,6 +8490,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9105,6 +9114,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; @@ -9141,6 +9151,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9385,6 +9396,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 929240e4aeb..6bd3dfc2b4b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -5705,6 +5705,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5979,6 +5980,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6014,6 +6016,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6121,6 +6124,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6862,6 +6866,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7720,6 +7725,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -7997,6 +8003,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8327,6 +8334,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8476,6 +8484,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9099,6 +9108,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; @@ -9135,6 +9145,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9379,6 +9390,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 84bab96be5a..2bfc3586000 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -5699,6 +5699,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5973,6 +5974,7 @@ self: super: { "microlens-mtl" = dontDistribute super."microlens-mtl"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = dontDistribute super."microlens-th"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -6008,6 +6010,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "misfortune" = dontDistribute super."misfortune"; @@ -6115,6 +6118,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_3_3_5"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6856,6 +6860,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_1"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7714,6 +7719,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; "serversession-backend-persistent" = dontDistribute super."serversession-backend-persistent"; @@ -7991,6 +7997,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8317,6 +8324,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8466,6 +8474,7 @@ self: super: { "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -9089,6 +9098,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; @@ -9125,6 +9135,7 @@ self: super: { "wai-session" = dontDistribute super."wai-session"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9368,6 +9379,7 @@ self: super: { "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; "yackage" = doDistribute super."yackage_0_7_0_8"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 487fa6b8ddd..9427fa39209 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -2061,6 +2061,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5569,6 +5570,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5838,6 +5840,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_3_1"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_0"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5873,6 +5876,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5977,6 +5981,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6698,6 +6703,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7550,6 +7556,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_1"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7823,6 +7830,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8136,6 +8144,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8284,6 +8293,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8895,6 +8905,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8929,6 +8940,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_1"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9166,6 +9178,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 9dae036bc3f..904fd94fc65 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -2060,6 +2060,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5567,6 +5568,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5835,6 +5837,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5870,6 +5873,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5974,6 +5978,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6694,6 +6699,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7545,6 +7551,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_1"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7818,6 +7825,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8131,6 +8139,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8279,6 +8288,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8889,6 +8899,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8923,6 +8934,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_1"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9160,6 +9172,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 2f169d7031e..5cb025f8104 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -2052,6 +2052,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5543,6 +5544,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5811,6 +5813,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5845,6 +5848,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5949,6 +5953,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_2"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6666,6 +6671,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7513,6 +7519,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7784,6 +7791,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8095,6 +8103,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8239,6 +8248,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8450,6 +8460,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8845,6 +8856,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8879,6 +8891,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_1"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9112,6 +9125,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index ea7d6964fc5..c929ba49160 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -2052,6 +2052,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5542,6 +5543,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5810,6 +5812,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5844,6 +5847,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5948,6 +5952,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_2"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6665,6 +6670,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7512,6 +7518,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7783,6 +7790,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8094,6 +8102,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8238,6 +8247,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8449,6 +8459,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8844,6 +8855,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8878,6 +8890,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_1"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9111,6 +9124,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 1307d813a23..08795bfbc24 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -2051,6 +2051,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5540,6 +5541,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5808,6 +5810,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5842,6 +5845,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5946,6 +5950,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_2"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6662,6 +6667,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7509,6 +7515,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7780,6 +7787,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8091,6 +8099,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8234,6 +8243,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8445,6 +8455,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8840,6 +8851,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8874,6 +8886,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_1"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9107,6 +9120,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 3690af4d52c..50446244b5d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -2051,6 +2051,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5538,6 +5539,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5806,6 +5808,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5840,6 +5843,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5944,6 +5948,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_2"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6659,6 +6664,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7506,6 +7512,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7777,6 +7784,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8088,6 +8096,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8231,6 +8240,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8442,6 +8452,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8837,6 +8848,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8871,6 +8883,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_1"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9104,6 +9117,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 3b59964b10b..a5f1113b626 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -2051,6 +2051,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5537,6 +5538,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5805,6 +5807,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5839,6 +5842,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5943,6 +5947,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6658,6 +6663,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7505,6 +7511,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7776,6 +7783,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8087,6 +8095,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8230,6 +8239,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8441,6 +8451,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8836,6 +8847,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8870,6 +8882,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9102,6 +9115,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index ad81299db77..5f227deb7cd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -2051,6 +2051,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5535,6 +5536,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5803,6 +5805,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5837,6 +5840,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5941,6 +5945,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6656,6 +6661,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7502,6 +7508,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7773,6 +7780,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8084,6 +8092,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8227,6 +8236,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8438,6 +8448,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8833,6 +8844,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8867,6 +8879,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9099,6 +9112,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 79064bdba81..425581d5e20 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -2050,6 +2050,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5533,6 +5534,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5800,6 +5802,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5834,6 +5837,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5938,6 +5942,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6653,6 +6658,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7497,6 +7503,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7768,6 +7775,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8079,6 +8087,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8220,6 +8229,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8431,6 +8441,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8826,6 +8837,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8860,6 +8872,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9092,6 +9105,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index fd4fe496fe7..c8cdc255f06 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -2049,6 +2049,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5530,6 +5531,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5796,6 +5798,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5830,6 +5833,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5933,6 +5937,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6648,6 +6653,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7492,6 +7498,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7763,6 +7770,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8074,6 +8082,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8215,6 +8224,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8426,6 +8436,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8821,6 +8832,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8855,6 +8867,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9087,6 +9100,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index c9e7c1f08ec..aaac289f465 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -2049,6 +2049,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5530,6 +5531,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5796,6 +5798,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5830,6 +5833,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5933,6 +5937,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6648,6 +6653,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7492,6 +7498,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7763,6 +7770,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8074,6 +8082,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8215,6 +8224,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8426,6 +8436,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8821,6 +8832,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8855,6 +8867,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9087,6 +9100,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index a629c044ba2..1a3247bd786 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -2047,6 +2047,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5524,6 +5525,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5790,6 +5792,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5824,6 +5827,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5927,6 +5931,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6641,6 +6646,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7485,6 +7491,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7755,6 +7762,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8066,6 +8074,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8207,6 +8216,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8418,6 +8428,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8813,6 +8824,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8847,6 +8859,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9078,6 +9091,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 825440d6d5c..6106d0f98ed 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -2058,6 +2058,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5563,6 +5564,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5831,6 +5833,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5866,6 +5869,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5970,6 +5974,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_2_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6690,6 +6695,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7540,6 +7546,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_1"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7812,6 +7819,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8125,6 +8133,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8273,6 +8282,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8883,6 +8893,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8917,6 +8928,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_1"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9154,6 +9166,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 8a3a5a5f53b..b823d7a30fb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -2046,6 +2046,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5523,6 +5524,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5789,6 +5791,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5823,6 +5826,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5926,6 +5930,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6640,6 +6645,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7483,6 +7489,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7753,6 +7760,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8063,6 +8071,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8204,6 +8213,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8415,6 +8425,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8810,6 +8821,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8844,6 +8856,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9074,6 +9087,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index d05da0a71a6..4ae28afe50f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -2046,6 +2046,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5518,6 +5519,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5784,6 +5786,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5818,6 +5821,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5921,6 +5925,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6634,6 +6639,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7476,6 +7482,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "servius" = dontDistribute super."servius"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -7742,6 +7749,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8052,6 +8060,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8193,6 +8202,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8404,6 +8414,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8798,6 +8809,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8831,6 +8843,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9061,6 +9074,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 1d5d27e16e7..cfdecf26dcd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -2046,6 +2046,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5515,6 +5516,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5781,6 +5783,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5815,6 +5818,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5918,6 +5922,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6631,6 +6636,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7473,6 +7479,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "servius" = dontDistribute super."servius"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -7739,6 +7746,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8049,6 +8057,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8190,6 +8199,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8401,6 +8411,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8795,6 +8806,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8828,6 +8840,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9058,6 +9071,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 280b1a28885..9d7ba709a60 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -2058,6 +2058,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5561,6 +5562,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5829,6 +5831,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5864,6 +5867,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5968,6 +5972,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6688,6 +6693,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7538,6 +7544,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_1"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7809,6 +7816,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8122,6 +8130,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8270,6 +8279,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8879,6 +8889,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8913,6 +8924,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_1"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9150,6 +9162,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 44809973935..52d5e088c3a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -2058,6 +2058,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5561,6 +5562,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5829,6 +5831,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5864,6 +5867,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5968,6 +5972,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6688,6 +6693,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7538,6 +7544,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_1"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7809,6 +7816,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8121,6 +8129,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8269,6 +8278,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8878,6 +8888,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8912,6 +8923,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_1"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9148,6 +9160,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index a3604b88b75..edbaf64de19 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -2057,6 +2057,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5556,6 +5557,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5824,6 +5826,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5859,6 +5862,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5963,6 +5967,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_1"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6682,6 +6687,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7531,6 +7537,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7802,6 +7809,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8114,6 +8122,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8259,6 +8268,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8868,6 +8878,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8902,6 +8913,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_1"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9137,6 +9149,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index eb472fae333..aa4204c9a8d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -2057,6 +2057,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5552,6 +5553,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5820,6 +5822,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5855,6 +5858,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5959,6 +5963,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_2"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6678,6 +6683,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7527,6 +7533,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7798,6 +7805,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8110,6 +8118,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8255,6 +8264,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8466,6 +8476,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8862,6 +8873,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8896,6 +8908,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_1"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9131,6 +9144,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index ef663b54c45..4825fb5ca7f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -2056,6 +2056,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5549,6 +5550,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5817,6 +5819,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5852,6 +5855,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5956,6 +5960,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_2"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6675,6 +6680,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7522,6 +7528,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7793,6 +7800,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8104,6 +8112,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8249,6 +8258,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8460,6 +8470,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8856,6 +8867,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8890,6 +8902,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_1"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9123,6 +9136,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index d3308bd7c86..305ef928998 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -2054,6 +2054,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5546,6 +5547,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5814,6 +5816,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5848,6 +5851,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5952,6 +5956,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_2"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6671,6 +6676,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7518,6 +7524,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7789,6 +7796,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8100,6 +8108,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8244,6 +8253,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8455,6 +8465,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8851,6 +8862,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8885,6 +8897,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_1"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9118,6 +9131,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 59ac0b2bea2..2c8e0d86108 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -2052,6 +2052,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5543,6 +5544,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5811,6 +5813,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_4_0"; "microlens-platform" = dontDistribute super."microlens-platform"; "microlens-th" = doDistribute super."microlens-th_0_2_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5845,6 +5848,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5949,6 +5953,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_9_3"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_2"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6668,6 +6673,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; @@ -7515,6 +7521,7 @@ self: super: { "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; + "server-generic" = dontDistribute super."server-generic"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; "serversession-backend-redis" = doDistribute super."serversession-backend-redis_1_0"; @@ -7786,6 +7793,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -8097,6 +8105,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; @@ -8241,6 +8250,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8452,6 +8462,7 @@ self: super: { "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; "tries" = dontDistribute super."tries"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8848,6 +8859,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8882,6 +8894,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_1"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = dontDistribute super."wai-session-postgresql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -9115,6 +9128,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index dc986e84787..1caea509bd7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -2016,6 +2016,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5426,6 +5427,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5686,6 +5688,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_6_0"; "microlens-platform" = doDistribute super."microlens-platform_0_1_7_0"; "microlens-th" = doDistribute super."microlens-th_0_2_2_0"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5719,6 +5722,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5818,6 +5822,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_0_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6509,6 +6514,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7334,6 +7340,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -7597,6 +7604,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7902,6 +7910,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -8038,6 +8047,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8245,6 +8255,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8624,6 +8635,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8653,6 +8665,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_3"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8873,6 +8886,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8979,6 +8993,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 50f4c4cd05d..b4d3c0b0f32 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -2015,6 +2015,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5417,6 +5418,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5677,6 +5679,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_6_0"; "microlens-platform" = doDistribute super."microlens-platform_0_1_7_0"; "microlens-th" = doDistribute super."microlens-th_0_2_2_0"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5710,6 +5713,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5809,6 +5813,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_0_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6500,6 +6505,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7325,6 +7331,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -7588,6 +7595,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7893,6 +7901,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -8029,6 +8038,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8236,6 +8246,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8615,6 +8626,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; @@ -8644,6 +8656,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8864,6 +8877,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8970,6 +8984,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 069cff93cef..27e9b990f72 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -2013,6 +2013,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5401,6 +5402,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5661,6 +5663,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_6_0"; "microlens-platform" = doDistribute super."microlens-platform_0_1_7_0"; "microlens-th" = doDistribute super."microlens-th_0_2_2_0"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5694,6 +5697,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5791,6 +5795,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_0_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6482,6 +6487,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7302,6 +7308,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = dontDistribute super."servant-swagger"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -7561,6 +7568,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7865,6 +7873,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -8001,6 +8010,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8208,6 +8218,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8587,6 +8598,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; @@ -8615,6 +8627,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8835,6 +8848,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8941,6 +8955,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index bb00f41e0d8..eb84fca3b25 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -2002,6 +2002,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5366,6 +5367,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5624,6 +5626,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_0"; "microlens-platform" = doDistribute super."microlens-platform_0_2_2_0"; "microlens-th" = doDistribute super."microlens-th_0_3_0_0"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5657,6 +5660,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5754,6 +5758,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6440,6 +6445,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7254,6 +7260,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_1"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7510,6 +7517,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7811,6 +7819,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7944,6 +7953,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8150,6 +8160,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8526,6 +8537,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; @@ -8554,6 +8566,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8772,6 +8785,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8878,6 +8892,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index dd0fbd09570..552bb4a60a2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -1999,6 +1999,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5361,6 +5362,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5619,6 +5621,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_0"; "microlens-platform" = doDistribute super."microlens-platform_0_2_2_0"; "microlens-th" = doDistribute super."microlens-th_0_3_0_0"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5652,6 +5655,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5748,6 +5752,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6434,6 +6439,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7247,6 +7253,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7503,6 +7510,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7804,6 +7812,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7937,6 +7946,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8143,6 +8153,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8518,6 +8529,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; @@ -8546,6 +8558,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8764,6 +8777,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8870,6 +8884,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index 3c62b757893..512ddf032a1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -1989,6 +1989,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2172,6 +2173,7 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; @@ -4197,6 +4199,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -5310,6 +5313,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5561,6 +5565,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_0"; "microlens-platform" = doDistribute super."microlens-platform_0_2_3_0"; "microlens-th" = doDistribute super."microlens-th_0_3_0_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5594,6 +5599,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5636,6 +5642,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5686,6 +5693,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_1_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6358,6 +6366,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7166,6 +7175,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7418,6 +7428,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7718,6 +7729,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7849,6 +7861,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8054,6 +8067,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8426,6 +8440,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; @@ -8450,6 +8465,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8667,6 +8683,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8773,6 +8790,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index 9c66dad130e..faa736236cb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -1986,6 +1986,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2169,6 +2170,8 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_13_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; @@ -4192,6 +4195,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -5300,6 +5304,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5551,6 +5556,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_0"; "microlens-platform" = doDistribute super."microlens-platform_0_2_3_0"; "microlens-th" = doDistribute super."microlens-th_0_3_0_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5584,6 +5590,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5626,6 +5633,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5676,6 +5684,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_1_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6348,6 +6357,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7155,6 +7165,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7407,6 +7418,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7707,6 +7719,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7837,6 +7850,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8042,6 +8056,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8411,6 +8426,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; @@ -8435,6 +8451,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8652,6 +8669,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8757,6 +8775,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index 3b60fb954d6..9d31452da94 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -1985,6 +1985,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2168,6 +2169,8 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_13_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; @@ -4189,6 +4192,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -5296,6 +5300,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5540,8 +5545,10 @@ self: super: { "microlens" = doDistribute super."microlens_0_4_2_1"; "microlens-each" = dontDistribute super."microlens-each"; "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_1"; "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1"; "microlens-th" = doDistribute super."microlens-th_0_3_0_2"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5575,6 +5582,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5616,6 +5624,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5666,6 +5675,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_1_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6338,6 +6348,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7144,6 +7155,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7396,6 +7408,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7696,6 +7709,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7826,6 +7840,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8031,6 +8046,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8400,6 +8416,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; @@ -8424,6 +8441,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8641,6 +8659,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8746,6 +8765,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index dab47c7684a..272b93b2957 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -1980,6 +1980,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2163,6 +2164,8 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_13_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; @@ -4184,6 +4187,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4582,6 +4586,7 @@ self: super: { "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_2"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -5289,6 +5294,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5532,8 +5538,10 @@ self: super: { "microlens" = doDistribute super."microlens_0_4_2_1"; "microlens-each" = dontDistribute super."microlens-each"; "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_1"; "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1"; "microlens-th" = doDistribute super."microlens-th_0_3_0_2"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5567,6 +5575,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5608,6 +5617,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5657,6 +5667,8 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6328,6 +6340,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7134,6 +7147,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7386,6 +7400,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7686,6 +7701,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7816,6 +7832,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8021,6 +8038,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8388,6 +8406,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; @@ -8412,6 +8431,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8629,6 +8649,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8733,6 +8754,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix index d9dacb0ac42..31b38eaa3d1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -1974,6 +1974,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2156,6 +2157,8 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_13_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-parse" = doDistribute super."conduit-parse_0_1_1_0"; @@ -4173,6 +4176,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4570,6 +4574,7 @@ self: super: { "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_2"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -5276,6 +5281,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5519,8 +5525,10 @@ self: super: { "microlens" = doDistribute super."microlens_0_4_2_1"; "microlens-each" = dontDistribute super."microlens-each"; "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_1"; "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1"; "microlens-th" = doDistribute super."microlens-th_0_3_0_2"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5553,6 +5561,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5594,6 +5603,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5643,6 +5653,8 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -5740,6 +5752,7 @@ self: super: { "mustache" = doDistribute super."mustache_1_0"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2_1"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6312,6 +6325,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7117,6 +7131,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7369,6 +7384,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7669,6 +7685,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7797,6 +7814,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8002,6 +8020,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8367,8 +8386,10 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_7"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-make-assets" = dontDistribute super."wai-make-assets"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; @@ -8390,6 +8411,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_5"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8606,6 +8628,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8707,6 +8730,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix index 135074e749a..59adf054384 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -1973,6 +1973,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2155,6 +2156,8 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_13_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; @@ -4166,6 +4169,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4563,6 +4567,7 @@ self: super: { "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_2"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -5268,6 +5273,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5511,8 +5517,10 @@ self: super: { "microlens" = doDistribute super."microlens_0_4_2_1"; "microlens-each" = dontDistribute super."microlens-each"; "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_1"; "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1"; "microlens-th" = doDistribute super."microlens-th_0_3_0_2"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5545,6 +5553,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5586,6 +5595,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5635,6 +5645,8 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -5732,6 +5744,7 @@ self: super: { "mustache" = doDistribute super."mustache_1_0"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2_1"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6304,6 +6317,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7107,6 +7121,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7359,6 +7374,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7659,6 +7675,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7786,6 +7803,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -7990,6 +8008,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8355,8 +8374,10 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_7"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-make-assets" = dontDistribute super."wai-make-assets"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; @@ -8378,6 +8399,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_5"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8594,6 +8616,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8694,6 +8717,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.16.nix b/pkgs/development/haskell-modules/configuration-lts-5.16.nix index 247e18a93d6..2a6f50f2ed6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.16.nix @@ -1967,6 +1967,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2147,6 +2148,8 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_13_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; @@ -4154,6 +4157,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4551,6 +4555,7 @@ self: super: { "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_2"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -5254,6 +5259,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5496,8 +5502,10 @@ self: super: { "microlens" = doDistribute super."microlens_0_4_2_1"; "microlens-each" = dontDistribute super."microlens-each"; "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_1"; "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1"; "microlens-th" = doDistribute super."microlens-th_0_3_0_2"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5530,6 +5538,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5571,6 +5580,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5620,6 +5630,8 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -5627,6 +5639,7 @@ self: super: { "monoid-statistics" = dontDistribute super."monoid-statistics"; "monoid-subclasses" = doDistribute super."monoid-subclasses_0_4_2"; "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_5"; "monoidplus" = dontDistribute super."monoidplus"; "monoids" = dontDistribute super."monoids"; "monomorphic" = dontDistribute super."monomorphic"; @@ -5715,6 +5728,7 @@ self: super: { "mustache" = doDistribute super."mustache_1_0"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2_1"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6286,6 +6300,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7083,6 +7098,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7332,6 +7348,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7631,6 +7648,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7756,6 +7774,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -7959,6 +7978,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8324,8 +8344,10 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_7"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-make-assets" = dontDistribute super."wai-make-assets"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; @@ -8347,6 +8369,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_5"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8563,6 +8586,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8663,6 +8687,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.17.nix b/pkgs/development/haskell-modules/configuration-lts-5.17.nix index e22c4cccdba..d7bc1d7e7d1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.17.nix @@ -1964,6 +1964,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2144,6 +2145,8 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_13_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; @@ -4151,6 +4154,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4548,6 +4552,7 @@ self: super: { "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_2"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -5251,6 +5256,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5492,8 +5498,10 @@ self: super: { "microlens" = doDistribute super."microlens_0_4_2_1"; "microlens-each" = dontDistribute super."microlens-each"; "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_1"; "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1"; "microlens-th" = doDistribute super."microlens-th_0_3_0_2"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5526,6 +5534,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5567,6 +5576,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5616,6 +5626,8 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -5623,6 +5635,7 @@ self: super: { "monoid-statistics" = dontDistribute super."monoid-statistics"; "monoid-subclasses" = doDistribute super."monoid-subclasses_0_4_2"; "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_5"; "monoidplus" = dontDistribute super."monoidplus"; "monoids" = dontDistribute super."monoids"; "monomorphic" = dontDistribute super."monomorphic"; @@ -5711,6 +5724,7 @@ self: super: { "mustache" = doDistribute super."mustache_1_0"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2_1"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6280,6 +6294,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7076,6 +7091,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7325,6 +7341,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7623,6 +7640,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7748,6 +7766,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -7950,6 +7969,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8314,8 +8334,10 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_7"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-make-assets" = dontDistribute super."wai-make-assets"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; @@ -8337,6 +8359,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_5"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8552,6 +8575,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8652,6 +8676,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.18.nix b/pkgs/development/haskell-modules/configuration-lts-5.18.nix index 755c8ff4428..da8a5cc8bd5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.18.nix @@ -1962,6 +1962,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2141,6 +2142,8 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_13_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; @@ -4140,6 +4143,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4537,6 +4541,7 @@ self: super: { "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_2"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -5237,6 +5242,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5478,8 +5484,10 @@ self: super: { "microlens" = doDistribute super."microlens_0_4_2_1"; "microlens-each" = dontDistribute super."microlens-each"; "microlens-ghc" = doDistribute super."microlens-ghc_0_4_2_1"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_1"; "microlens-platform" = doDistribute super."microlens-platform_0_2_3_1"; "microlens-th" = doDistribute super."microlens-th_0_3_0_2"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5512,6 +5520,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5552,6 +5561,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5600,6 +5610,8 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -5607,6 +5619,7 @@ self: super: { "monoid-statistics" = dontDistribute super."monoid-statistics"; "monoid-subclasses" = doDistribute super."monoid-subclasses_0_4_2"; "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_5"; "monoidplus" = dontDistribute super."monoidplus"; "monoids" = dontDistribute super."monoids"; "monomorphic" = dontDistribute super."monomorphic"; @@ -5694,6 +5707,7 @@ self: super: { "mustache" = doDistribute super."mustache_1_0"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2_1"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6261,6 +6275,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7056,6 +7071,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7305,6 +7321,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7603,6 +7620,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7728,6 +7746,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -7929,6 +7948,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8292,8 +8312,10 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_7"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-make-assets" = dontDistribute super."wai-make-assets"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; @@ -8315,6 +8337,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_5"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8529,6 +8552,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8629,6 +8653,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 39f32b28c0a..e2a3e04cc10 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -1999,6 +1999,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -5354,6 +5355,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5612,6 +5614,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_0"; "microlens-platform" = doDistribute super."microlens-platform_0_2_2_0"; "microlens-th" = doDistribute super."microlens-th_0_3_0_0"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5645,6 +5648,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5688,6 +5692,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5738,6 +5743,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6421,6 +6427,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7232,6 +7239,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7488,6 +7496,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7788,6 +7797,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7921,6 +7931,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8127,6 +8138,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8502,6 +8514,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; @@ -8530,6 +8543,7 @@ self: super: { "wai-routing" = doDistribute super."wai-routing_0_12_2"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8748,6 +8762,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8854,6 +8869,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index 53716dc45c7..2bb98ca8063 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -1997,6 +1997,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2183,6 +2184,7 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; "conduit-extra" = doDistribute super."conduit-extra_1_1_9_2"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; @@ -5343,6 +5345,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5599,6 +5602,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_0"; "microlens-platform" = doDistribute super."microlens-platform_0_2_2_0"; "microlens-th" = doDistribute super."microlens-th_0_3_0_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5632,6 +5636,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5675,6 +5680,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5725,6 +5731,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_3"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6407,6 +6414,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7216,6 +7224,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7470,6 +7479,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7770,6 +7780,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7903,6 +7914,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8109,6 +8121,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8483,6 +8496,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; @@ -8509,6 +8523,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8727,6 +8742,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8833,6 +8849,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index 4c84e4e8493..59972fbb215 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -1996,6 +1996,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2181,6 +2182,7 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; "conduit-extra" = doDistribute super."conduit-extra_1_1_10_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; @@ -5335,6 +5337,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5590,6 +5593,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_0"; "microlens-platform" = doDistribute super."microlens-platform_0_2_3_0"; "microlens-th" = doDistribute super."microlens-th_0_3_0_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5623,6 +5627,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5666,6 +5671,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5716,6 +5722,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_1_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6394,6 +6401,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7203,6 +7211,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7457,6 +7466,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7757,6 +7767,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7889,6 +7900,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8095,6 +8107,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8469,6 +8482,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; @@ -8495,6 +8509,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8713,6 +8728,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8819,6 +8835,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 4bab062748f..559688f81b1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -1995,6 +1995,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2180,6 +2181,7 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; "conduit-extra" = doDistribute super."conduit-extra_1_1_10_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; @@ -5333,6 +5335,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5588,6 +5591,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_0"; "microlens-platform" = doDistribute super."microlens-platform_0_2_3_0"; "microlens-th" = doDistribute super."microlens-th_0_3_0_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5621,6 +5625,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5664,6 +5669,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5714,6 +5720,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_1_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6392,6 +6399,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7201,6 +7209,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7455,6 +7464,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7755,6 +7765,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7887,6 +7898,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8093,6 +8105,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8466,6 +8479,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; @@ -8492,6 +8506,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8710,6 +8725,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8816,6 +8832,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 26da28ccc81..d59f03a2cde 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -1994,6 +1994,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2179,6 +2180,7 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; @@ -5327,6 +5329,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5581,6 +5584,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_0"; "microlens-platform" = doDistribute super."microlens-platform_0_2_3_0"; "microlens-th" = doDistribute super."microlens-th_0_3_0_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5614,6 +5618,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5657,6 +5662,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5707,6 +5713,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_1_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6383,6 +6390,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7192,6 +7200,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7446,6 +7455,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7746,6 +7756,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7878,6 +7889,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8083,6 +8095,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8456,6 +8469,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; @@ -8481,6 +8495,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8698,6 +8713,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8804,6 +8820,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index efdbfc7ce48..3ec57e8884f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -1993,6 +1993,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2176,6 +2177,7 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; @@ -5323,6 +5325,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5576,6 +5579,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_0"; "microlens-platform" = doDistribute super."microlens-platform_0_2_3_0"; "microlens-th" = doDistribute super."microlens-th_0_3_0_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5609,6 +5613,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5652,6 +5657,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5702,6 +5708,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_1_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6378,6 +6385,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7187,6 +7195,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7441,6 +7450,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7741,6 +7751,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7873,6 +7884,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8078,6 +8090,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8450,6 +8463,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; @@ -8475,6 +8489,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8692,6 +8707,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8798,6 +8814,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index 9f97ada1964..e03a1f518cb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -1993,6 +1993,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2176,6 +2177,7 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; @@ -5323,6 +5325,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5576,6 +5579,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_0"; "microlens-platform" = doDistribute super."microlens-platform_0_2_3_0"; "microlens-th" = doDistribute super."microlens-th_0_3_0_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5609,6 +5613,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5652,6 +5657,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5702,6 +5708,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_1_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6378,6 +6385,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7187,6 +7195,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7441,6 +7450,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7741,6 +7751,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7873,6 +7884,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8078,6 +8090,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8450,6 +8463,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; @@ -8474,6 +8488,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8691,6 +8706,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8797,6 +8813,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 3de5cd389c6..ded4fc8b6bf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -1991,6 +1991,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2174,6 +2175,7 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; @@ -4199,6 +4201,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -5315,6 +5318,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5568,6 +5572,7 @@ self: super: { "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_0"; "microlens-platform" = doDistribute super."microlens-platform_0_2_3_0"; "microlens-th" = doDistribute super."microlens-th_0_3_0_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midair" = dontDistribute super."midair"; @@ -5601,6 +5606,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5644,6 +5650,7 @@ self: super: { "monad-journal" = doDistribute super."monad-journal_0_7_1"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5694,6 +5701,7 @@ self: super: { "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; "mono-traversable" = doDistribute super."mono-traversable_0_10_1_1"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -6367,6 +6375,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7175,6 +7184,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7427,6 +7437,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7727,6 +7738,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7858,6 +7870,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -8063,6 +8076,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8435,6 +8449,7 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; @@ -8459,6 +8474,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8676,6 +8692,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8782,6 +8799,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.0.nix b/pkgs/development/haskell-modules/configuration-lts-6.0.nix index 1ae668aa038..a377401c0ed 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.0.nix @@ -1927,6 +1927,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2102,6 +2103,8 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_13_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; @@ -4038,6 +4041,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4424,6 +4428,7 @@ self: super: { "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_2"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -5101,6 +5106,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5335,7 +5341,10 @@ self: super: { "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_4_4_0"; "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_4_0"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_1"; "microlens-platform" = doDistribute super."microlens-platform_0_3_1_0"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midi" = dontDistribute super."midi"; @@ -5367,6 +5376,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5407,6 +5417,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5452,6 +5463,8 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -5459,6 +5472,7 @@ self: super: { "monoid-statistics" = dontDistribute super."monoid-statistics"; "monoid-subclasses" = doDistribute super."monoid-subclasses_0_4_2"; "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_5"; "monoidplus" = dontDistribute super."monoidplus"; "monoids" = dontDistribute super."monoids"; "monomorphic" = dontDistribute super."monomorphic"; @@ -5544,6 +5558,7 @@ self: super: { "mustache" = doDistribute super."mustache_1_0"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2_1"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6101,6 +6116,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = doDistribute super."pointful_1_0_7"; @@ -6270,6 +6286,7 @@ self: super: { "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_2_0"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "protolude" = doDistribute super."protolude_0_1_5"; "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; @@ -6854,6 +6871,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_1_0_3"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -7097,6 +7115,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7385,6 +7404,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7507,6 +7527,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -7702,6 +7723,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -8049,8 +8071,10 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_7"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-make-assets" = dontDistribute super."wai-make-assets"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; @@ -8071,6 +8095,7 @@ self: super: { "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_5"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; @@ -8082,6 +8107,7 @@ self: super: { "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_6"; "warp-dynamic" = dontDistribute super."warp-dynamic"; "warp-static" = dontDistribute super."warp-static"; "warp-tls" = doDistribute super."warp-tls_3_2_1"; @@ -8281,6 +8307,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8378,6 +8405,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.1.nix b/pkgs/development/haskell-modules/configuration-lts-6.1.nix index 23c504c8b00..02a97715946 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.1.nix @@ -1915,6 +1915,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2090,6 +2091,8 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_13_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; @@ -4005,6 +4008,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4389,6 +4393,7 @@ self: super: { "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_2"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -5059,6 +5064,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5291,7 +5297,10 @@ self: super: { "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_4_4_0"; "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_4_0"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_1"; "microlens-platform" = doDistribute super."microlens-platform_0_3_1_0"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midi" = dontDistribute super."midi"; @@ -5323,6 +5332,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5362,6 +5372,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5406,6 +5417,8 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -5413,6 +5426,7 @@ self: super: { "monoid-statistics" = dontDistribute super."monoid-statistics"; "monoid-subclasses" = doDistribute super."monoid-subclasses_0_4_2"; "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_5"; "monoidplus" = dontDistribute super."monoidplus"; "monoids" = dontDistribute super."monoids"; "monomorphic" = dontDistribute super."monomorphic"; @@ -5498,6 +5512,7 @@ self: super: { "mustache" = doDistribute super."mustache_1_0"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2_1"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6047,6 +6062,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointless-haskell" = dontDistribute super."pointless-haskell"; @@ -6211,6 +6227,7 @@ self: super: { "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_2_0"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "protolude" = doDistribute super."protolude_0_1_5"; "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; @@ -6791,6 +6808,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_1_0_3"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -7034,6 +7052,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7321,6 +7340,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7441,6 +7461,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -7635,6 +7656,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -7980,8 +8002,10 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_7"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-make-assets" = dontDistribute super."wai-make-assets"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; @@ -8001,6 +8025,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8011,6 +8036,7 @@ self: super: { "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_6"; "warp-dynamic" = dontDistribute super."warp-dynamic"; "warp-static" = dontDistribute super."warp-static"; "warp-tls" = doDistribute super."warp-tls_3_2_1"; @@ -8207,6 +8233,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8303,6 +8330,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.2.nix b/pkgs/development/haskell-modules/configuration-lts-6.2.nix index fdd173f2e5a..313369cb085 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.2.nix @@ -1094,6 +1094,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-coerce" = dontDistribute super."aeson-coerce"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_4_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; @@ -1904,6 +1905,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -2077,6 +2079,8 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_13_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; @@ -3981,6 +3985,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4365,6 +4370,7 @@ self: super: { "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_2"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -5031,6 +5037,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5263,7 +5270,10 @@ self: super: { "microformats2-types" = dontDistribute super."microformats2-types"; "microlens" = doDistribute super."microlens_0_4_4_0"; "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_4_0"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_1"; "microlens-platform" = doDistribute super."microlens-platform_0_3_1_0"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midi" = dontDistribute super."midi"; @@ -5295,6 +5305,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5334,6 +5345,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5378,6 +5390,8 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_0_4"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -5385,6 +5399,7 @@ self: super: { "monoid-statistics" = dontDistribute super."monoid-statistics"; "monoid-subclasses" = doDistribute super."monoid-subclasses_0_4_2"; "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_5"; "monoidplus" = dontDistribute super."monoidplus"; "monoids" = dontDistribute super."monoids"; "monomorphic" = dontDistribute super."monomorphic"; @@ -5469,6 +5484,7 @@ self: super: { "mustache" = doDistribute super."mustache_1_0"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2_1"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -6012,6 +6028,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointless-haskell" = dontDistribute super."pointless-haskell"; @@ -6176,6 +6193,7 @@ self: super: { "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_2_0"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "protolude" = doDistribute super."protolude_0_1_5"; "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; @@ -6750,6 +6768,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_1_0_3"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6992,6 +7011,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7276,6 +7296,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7395,6 +7416,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -7589,6 +7611,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -7932,8 +7955,10 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_7"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-make-assets" = dontDistribute super."wai-make-assets"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; @@ -7953,6 +7978,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -7963,6 +7989,7 @@ self: super: { "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_6"; "warp-dynamic" = dontDistribute super."warp-dynamic"; "warp-static" = dontDistribute super."warp-static"; "warp-tls" = doDistribute super."warp-tls_3_2_1"; @@ -8156,6 +8183,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8251,6 +8279,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.3.nix b/pkgs/development/haskell-modules/configuration-lts-6.3.nix index 3e9b650c457..4b4311318b6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.3.nix @@ -1089,6 +1089,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-coerce" = dontDistribute super."aeson-coerce"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_4_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; @@ -1824,6 +1825,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -1990,6 +1992,8 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_13_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; @@ -3880,6 +3884,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4259,6 +4264,7 @@ self: super: { "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_2"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4921,6 +4927,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5151,7 +5158,12 @@ self: super: { "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_4_4_3"; "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_4_0"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_1"; + "microlens-platform" = doDistribute super."microlens-platform_0_3_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midi" = dontDistribute super."midi"; @@ -5183,6 +5195,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5222,6 +5235,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5265,6 +5279,8 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-extras" = doDistribute super."monoid-extras_0_4_1"; "monoid-owns" = dontDistribute super."monoid-owns"; @@ -5272,6 +5288,7 @@ self: super: { "monoid-statistics" = dontDistribute super."monoid-statistics"; "monoid-subclasses" = doDistribute super."monoid-subclasses_0_4_2"; "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_5"; "monoidplus" = dontDistribute super."monoidplus"; "monoids" = dontDistribute super."monoids"; "monomorphic" = dontDistribute super."monomorphic"; @@ -5355,6 +5372,7 @@ self: super: { "mustache" = doDistribute super."mustache_1_0"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2_1"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5847,6 +5865,7 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_4"; "pipes-files" = dontDistribute super."pipes-files"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; @@ -5892,6 +5911,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointless-haskell" = dontDistribute super."pointless-haskell"; @@ -6055,6 +6075,7 @@ self: super: { "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_2_0"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "protolude" = doDistribute super."protolude_0_1_5"; "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; @@ -6526,6 +6547,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_7"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6626,6 +6648,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_1_0_3"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6868,6 +6891,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7149,6 +7173,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7267,6 +7292,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -7458,6 +7484,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -7796,8 +7823,10 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_7"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-make-assets" = dontDistribute super."wai-make-assets"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; @@ -7817,6 +7846,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -7827,6 +7857,7 @@ self: super: { "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_6"; "warp-dynamic" = dontDistribute super."warp-dynamic"; "warp-static" = dontDistribute super."warp-static"; "warp-tls" = doDistribute super."warp-tls_3_2_1"; @@ -8016,6 +8047,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8110,6 +8142,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.4.nix b/pkgs/development/haskell-modules/configuration-lts-6.4.nix index 04488223c18..c3e2da5ab55 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.4.nix @@ -1087,6 +1087,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-coerce" = dontDistribute super."aeson-coerce"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_4_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; @@ -1820,6 +1821,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -1847,6 +1849,9 @@ self: super: { "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "classy-prelude" = doDistribute super."classy-prelude_0_12_8"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_8"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_8"; "clay" = doDistribute super."clay_0_10_1"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -1983,6 +1988,8 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_13_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; @@ -3865,6 +3872,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4242,6 +4250,7 @@ self: super: { "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_2"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4422,6 +4431,7 @@ self: super: { "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; + "inline-c" = doDistribute super."inline-c_0_5_5_3"; "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-java" = dontDistribute super."inline-java"; "inline-r" = doDistribute super."inline-r_0_8_0_1"; @@ -4901,6 +4911,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5131,7 +5142,12 @@ self: super: { "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_4_4_3"; "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_4_0"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_1"; + "microlens-platform" = doDistribute super."microlens-platform_0_3_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midi" = dontDistribute super."midi"; @@ -5163,6 +5179,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5202,6 +5219,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5244,12 +5262,15 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; "monoid-subclasses" = doDistribute super."monoid-subclasses_0_4_2"; "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_5"; "monoidplus" = dontDistribute super."monoidplus"; "monoids" = dontDistribute super."monoids"; "monomorphic" = dontDistribute super."monomorphic"; @@ -5333,6 +5354,7 @@ self: super: { "mustache" = doDistribute super."mustache_1_0_1"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2_1"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5821,6 +5843,7 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_4"; "pipes-files" = dontDistribute super."pipes-files"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; @@ -5866,6 +5889,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointless-haskell" = dontDistribute super."pointless-haskell"; @@ -6029,6 +6053,7 @@ self: super: { "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_2_0"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "protolude" = doDistribute super."protolude_0_1_5"; "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; @@ -6496,6 +6521,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_7"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6596,6 +6622,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_1_0_3"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6836,6 +6863,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7115,6 +7143,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7232,6 +7261,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -7423,6 +7453,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -7750,6 +7781,7 @@ self: super: { "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_15_2"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7759,8 +7791,10 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_7"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-make-assets" = dontDistribute super."wai-make-assets"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; @@ -7780,6 +7814,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -7789,6 +7824,7 @@ self: super: { "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_6"; "warp-dynamic" = dontDistribute super."warp-dynamic"; "warp-static" = dontDistribute super."warp-static"; "warp-tls" = doDistribute super."warp-tls_3_2_1"; @@ -7978,6 +8014,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -8072,6 +8109,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.5.nix b/pkgs/development/haskell-modules/configuration-lts-6.5.nix index 6df28d6d4f7..649e719a019 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.5.nix @@ -1085,6 +1085,7 @@ self: super: { "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-coerce" = dontDistribute super."aeson-coerce"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_4_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; @@ -1815,6 +1816,7 @@ self: super: { "chronograph" = dontDistribute super."chronograph"; "chu2" = dontDistribute super."chu2"; "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; "chunks" = dontDistribute super."chunks"; "chunky" = dontDistribute super."chunky"; "church-list" = dontDistribute super."church-list"; @@ -1842,6 +1844,9 @@ self: super: { "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "classy-prelude" = doDistribute super."classy-prelude_0_12_8"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_8"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_8"; "clay" = doDistribute super."clay_0_10_1"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; @@ -1977,6 +1982,8 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_13_1"; "conduit-merge" = dontDistribute super."conduit-merge"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; @@ -3854,6 +3861,7 @@ self: super: { "highlight-versions" = dontDistribute super."highlight-versions"; "highlighter" = dontDistribute super."highlighter"; "highlighter2" = dontDistribute super."highlighter2"; + "highlighting-kate" = doDistribute super."highlighting-kate_0_6_2"; "hills" = dontDistribute super."hills"; "himerge" = dontDistribute super."himerge"; "himg" = dontDistribute super."himg"; @@ -4230,6 +4238,7 @@ self: super: { "http-client-conduit" = dontDistribute super."http-client-conduit"; "http-client-lens" = dontDistribute super."http-client-lens"; "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_2"; "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; @@ -4410,6 +4419,7 @@ self: super: { "inilist" = dontDistribute super."inilist"; "inject" = dontDistribute super."inject"; "inject-function" = dontDistribute super."inject-function"; + "inline-c" = doDistribute super."inline-c_0_5_5_3"; "inline-c-win32" = dontDistribute super."inline-c-win32"; "inline-java" = dontDistribute super."inline-java"; "inline-r" = doDistribute super."inline-r_0_8_0_1"; @@ -4885,6 +4895,7 @@ self: super: { "list-t-http-client" = dontDistribute super."list-t-http-client"; "list-t-libcurl" = dontDistribute super."list-t-libcurl"; "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; "list-tries" = dontDistribute super."list-tries"; "list-zip-def" = dontDistribute super."list-zip-def"; "listlike-instances" = dontDistribute super."listlike-instances"; @@ -5115,7 +5126,12 @@ self: super: { "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens" = doDistribute super."microlens_0_4_4_3"; "microlens-each" = dontDistribute super."microlens-each"; + "microlens-ghc" = doDistribute super."microlens-ghc_0_4_4_0"; + "microlens-mtl" = doDistribute super."microlens-mtl_0_1_7_1"; + "microlens-platform" = doDistribute super."microlens-platform_0_3_1_1"; + "micrologger" = dontDistribute super."micrologger"; "microtimer" = dontDistribute super."microtimer"; "mida" = dontDistribute super."mida"; "midi" = dontDistribute super."midi"; @@ -5147,6 +5163,7 @@ self: super: { "minisat" = dontDistribute super."minisat"; "ministg" = dontDistribute super."ministg"; "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; "minst-idx" = dontDistribute super."minst-idx"; "mirror-tweet" = dontDistribute super."mirror-tweet"; "missing-py2" = dontDistribute super."missing-py2"; @@ -5186,6 +5203,7 @@ self: super: { "monad-interleave" = dontDistribute super."monad-interleave"; "monad-levels" = dontDistribute super."monad-levels"; "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; "monad-loops-stm" = dontDistribute super."monad-loops-stm"; "monad-lrs" = dontDistribute super."monad-lrs"; @@ -5228,12 +5246,15 @@ self: super: { "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; "monoid-absorbing" = dontDistribute super."monoid-absorbing"; "monoid-owns" = dontDistribute super."monoid-owns"; "monoid-record" = dontDistribute super."monoid-record"; "monoid-statistics" = dontDistribute super."monoid-statistics"; "monoid-subclasses" = doDistribute super."monoid-subclasses_0_4_2"; "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_5"; "monoidplus" = dontDistribute super."monoidplus"; "monoids" = dontDistribute super."monoids"; "monomorphic" = dontDistribute super."monomorphic"; @@ -5316,6 +5337,7 @@ self: super: { "musicxml2" = dontDistribute super."musicxml2"; "mustache-haskell" = dontDistribute super."mustache-haskell"; "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2_1"; "mutable-iter" = dontDistribute super."mutable-iter"; "mute-unmute" = dontDistribute super."mute-unmute"; "mvc" = dontDistribute super."mvc"; @@ -5800,6 +5822,7 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_4"; "pipes-files" = dontDistribute super."pipes-files"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; @@ -5845,6 +5868,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointless-haskell" = dontDistribute super."pointless-haskell"; @@ -6008,6 +6032,7 @@ self: super: { "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_2_0"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "protolude" = doDistribute super."protolude_0_1_5"; "proton-haskell" = dontDistribute super."proton-haskell"; "prototype" = dontDistribute super."prototype"; "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; @@ -6470,6 +6495,7 @@ self: super: { "sci-ratio" = dontDistribute super."sci-ratio"; "science-constants" = dontDistribute super."science-constants"; "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scientific" = doDistribute super."scientific_0_3_4_7"; "scion" = dontDistribute super."scion"; "scion-browser" = dontDistribute super."scion-browser"; "scons2dot" = dontDistribute super."scons2dot"; @@ -6570,6 +6596,7 @@ self: super: { "servant-subscriber" = dontDistribute super."servant-subscriber"; "servant-swagger" = doDistribute super."servant-swagger_1_0_3"; "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6807,6 +6834,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; @@ -7083,6 +7111,7 @@ self: super: { "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; "t-regex" = dontDistribute super."t-regex"; "t3-client" = dontDistribute super."t3-client"; "t3-game" = dontDistribute super."t3-game"; @@ -7199,6 +7228,7 @@ self: super: { "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; "text-icu-translit" = dontDistribute super."text-icu-translit"; "text-json-qq" = dontDistribute super."text-json-qq"; "text-latin1" = dontDistribute super."text-latin1"; @@ -7385,6 +7415,7 @@ self: super: { "tremulous-query" = dontDistribute super."tremulous-query"; "trhsx" = dontDistribute super."trhsx"; "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; "trimpolya" = dontDistribute super."trimpolya"; "tripLL" = dontDistribute super."tripLL"; "trivia" = dontDistribute super."trivia"; @@ -7710,6 +7741,7 @@ self: super: { "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_15_2"; "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; "wai-graceful" = dontDistribute super."wai-graceful"; "wai-handler-devel" = dontDistribute super."wai-handler-devel"; @@ -7719,8 +7751,10 @@ self: super: { "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; "wai-hastache" = dontDistribute super."wai-hastache"; "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_7"; "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; "wai-make-assets" = dontDistribute super."wai-make-assets"; "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; @@ -7740,6 +7774,7 @@ self: super: { "wai-router" = dontDistribute super."wai-router"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -7749,6 +7784,7 @@ self: super: { "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_6"; "warp-dynamic" = dontDistribute super."warp-dynamic"; "warp-static" = dontDistribute super."warp-static"; "warp-tls-uid" = dontDistribute super."warp-tls-uid"; @@ -7935,6 +7971,7 @@ self: super: { "y0l0bot" = dontDistribute super."y0l0bot"; "yabi" = dontDistribute super."yabi"; "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; "yahoo-web-search" = dontDistribute super."yahoo-web-search"; "yajl" = dontDistribute super."yajl"; @@ -7973,6 +8010,7 @@ self: super: { "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_10"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -8027,6 +8065,7 @@ self: super: { "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-language" = doDistribute super."yi-language_0_2_0"; "yi-monokai" = dontDistribute super."yi-monokai"; "yi-snippet" = dontDistribute super."yi-snippet"; "yi-solarized" = dontDistribute super."yi-solarized"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.6.nix b/pkgs/development/haskell-modules/configuration-lts-6.6.nix new file mode 100644 index 00000000000..fc0084517c5 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-6.6.nix @@ -0,0 +1,8102 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-6.6 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AFSM" = dontDistribute super."AFSM"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda" = doDistribute super."Agda_2_5_1"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "Chart" = doDistribute super."Chart_1_6"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_6"; + "Chart-diagrams" = doDistribute super."Chart-diagrams_1_6"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "Delta-Lambda" = dontDistribute super."Delta-Lambda"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "Diff" = doDistribute super."Diff_0_3_2"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "EdisonAPI" = doDistribute super."EdisonAPI_1_3"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "H" = doDistribute super."H_0_8_0_0"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPhone" = dontDistribute super."HPhone"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaDB" = dontDistribute super."LambdaDB"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "LibZip" = dontDistribute super."LibZip"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingH" = doDistribute super."MissingH_1_3_0_2"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QLearn" = dontDistribute super."QLearn"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abnf" = dontDistribute super."abnf"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-typelits" = dontDistribute super."accelerate-typelits"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "accuerr" = dontDistribute super."accuerr"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adler32" = dontDistribute super."adler32"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-coerce" = dontDistribute super."aeson-coerce"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_4_0"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-flatten" = dontDistribute super."aeson-flatten"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-prefix" = dontDistribute super."aeson-prefix"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_5_0"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-distributed" = dontDistribute super."aivika-distributed"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-lattice" = dontDistribute super."aivika-lattice"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_9"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; + "ampersand" = dontDistribute super."ampersand"; + "amqp" = doDistribute super."amqp_0_13_1"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; + "annihilator" = dontDistribute super."annihilator"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-quoters" = dontDistribute super."applicative-quoters"; + "applicative-splice" = dontDistribute super."applicative-splice"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = dontDistribute super."argon"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-flatten" = dontDistribute super."ascii-flatten"; + "ascii-table" = dontDistribute super."ascii-table"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "aur-api" = dontDistribute super."aur-api"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "automitive-cse" = dontDistribute super."automitive-cse"; + "automotive-cse" = dontDistribute super."automotive-cse"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "avwx" = dontDistribute super."avwx"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_2"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bcrypt" = doDistribute super."bcrypt_0_0_8"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beam-th" = dontDistribute super."beam-th"; + "beamable" = dontDistribute super."beamable"; + "bearriver" = dontDistribute super."bearriver"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bifunctors" = doDistribute super."bifunctors_5_2"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-libzip" = dontDistribute super."bindings-libzip"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biophd" = doDistribute super."biophd_0_0_4"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-payment-channel" = dontDistribute super."bitcoin-payment-channel"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits" = doDistribute super."bits_0_4"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "bmp" = doDistribute super."bmp_1_2_5_2"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "boring-window-switcher" = dontDistribute super."boring-window-switcher"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brick" = doDistribute super."brick_0_4_1"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-helper" = doDistribute super."cabal-helper_0_6_3_1"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install" = doDistribute super."cabal-install_1_22_9_0"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cache" = dontDistribute super."cache"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_6_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = doDistribute super."cairo_0_13_1_1"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "calendar-recycling" = dontDistribute super."calendar-recycling"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_16_0_0"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-megaparsec" = dontDistribute super."cassava-megaparsec"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chorale-geo" = dontDistribute super."chorale-geo"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunked-data" = doDistribute super."chunked-data_0_2_0"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "classy-prelude" = doDistribute super."classy-prelude_0_12_8"; + "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_8"; + "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_8"; + "clay" = doDistribute super."clay_0_10_1"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "cloben" = dontDistribute super."cloben"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmph" = dontDistribute super."cmph"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_4_0_10"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coin" = dontDistribute super."coin"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colonnade" = dontDistribute super."colonnade"; + "color-counter" = dontDistribute super."color-counter"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad" = doDistribute super."comonad_4_2_7_2"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-combinators" = doDistribute super."conduit-combinators_1_0_3_1"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_13_1"; + "conduit-merge" = dontDistribute super."conduit-merge"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "config-value-getopt" = dontDistribute super."config-value-getopt"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-builder" = dontDistribute super."container-builder"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cql" = doDistribute super."cql_3_0_7"; + "cql-io" = doDistribute super."cql-io_0_15_2"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-multihash" = dontDistribute super."crypto-multihash"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; + "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; + "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptonite" = doDistribute super."cryptonite_0_15"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-base" = dontDistribute super."data-base"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default" = doDistribute super."data-default_0_5_3"; + "data-default-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-function-meld" = dontDistribute super."data-function-meld"; + "data-function-tacit" = dontDistribute super."data-function-tacit"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "datadog" = dontDistribute super."datadog"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddate" = dontDistribute super."ddate"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-babel" = dontDistribute super."ddc-core-babel"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = doDistribute super."debian-build_0_9_2_0"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-generics" = doDistribute super."deepseq-generics_0_1_1_2"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "delude" = dontDistribute super."delude"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dense" = dontDistribute super."dense"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = doDistribute super."deriving-compat_0_2"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_10"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "diagrams-wx" = dontDistribute super."diagrams-wx"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictionary-sharing" = dontDistribute super."dictionary-sharing"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-nixpkgs" = dontDistribute super."distribution-nixpkgs"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "djembe" = dontDistribute super."djembe"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "docvim" = dontDistribute super."docvim"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot-linker" = dontDistribute super."dot-linker"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_3_0_1"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "dpor" = doDistribute super."dpor_0_1_0_1"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "drmaa" = dontDistribute super."drmaa"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "dunai" = dontDistribute super."dunai"; + "duplo" = dontDistribute super."duplo"; + "dustme" = dontDistribute super."dustme"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ec2-unikernel" = dontDistribute super."ec2-unikernel"; + "eccrypto" = dontDistribute super."eccrypto"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-export" = dontDistribute super."elm-export"; + "elm-get" = dontDistribute super."elm-get"; + "elm-hybrid" = dontDistribute super."elm-hybrid"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validate-json" = dontDistribute super."email-validate-json"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "enchant" = dontDistribute super."enchant"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventsourced" = dontDistribute super."eventsourced"; + "eventstore" = doDistribute super."eventstore_0_12_0_0"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "failure-detector" = dontDistribute super."failure-detector"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-gipeda" = dontDistribute super."feed-gipeda"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fitspec" = dontDistribute super."fitspec"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "fizzbuzz" = dontDistribute super."fizzbuzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow-er" = dontDistribute super."flow-er"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock" = dontDistribute super."flowdock"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "foobar" = dontDistribute super."foobar"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "fraxl" = dontDistribute super."fraxl"; + "freddy" = dontDistribute super."freddy"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funnyprint" = dontDistribute super."funnyprint"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-random" = dontDistribute super."generic-random"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geojson-types" = dontDistribute super."geojson-types"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-history-parser" = dontDistribute super."ghci-history-parser"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcjs-ajax" = dontDistribute super."ghcjs-ajax"; + "ghcjs-dom" = doDistribute super."ghcjs-dom_0_2_4_0"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-dom-jsaddle" = dontDistribute super."ghcjs-dom-jsaddle"; + "ghcjs-dom-jsffi" = dontDistribute super."ghcjs-dom-jsffi"; + "ghcjs-dom-webkit" = dontDistribute super."ghcjs-dom-webkit"; + "ghcjs-hplay" = dontDistribute super."ghcjs-hplay"; + "ghcjs-perch" = dontDistribute super."ghcjs-perch"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; + "gi-gtk-hs" = dontDistribute super."gi-gtk-hs"; + "gi-gtkosxapplication" = dontDistribute super."gi-gtkosxapplication"; + "gi-gtksource" = dontDistribute super."gi-gtksource"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pangocairo" = dontDistribute super."gi-pangocairo"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "gio" = doDistribute super."gio_0_13_1_1"; + "gipeda" = doDistribute super."gipeda_0_2_0_1"; + "gist" = dontDistribute super."gist"; + "git" = dontDistribute super."git"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160511"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "givegif" = dontDistribute super."givegif"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glib" = doDistribute super."glib_0_13_2_2"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudmonitoring" = dontDistribute super."gogol-cloudmonitoring"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-dataproc" = dontDistribute super."gogol-dataproc"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-firebase-rules" = dontDistribute super."gogol-firebase-rules"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-kgsearch" = dontDistribute super."gogol-kgsearch"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-people" = dontDistribute super."gogol-people"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-script" = dontDistribute super."gogol-script"; + "gogol-sheets" = dontDistribute super."gogol-sheets"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-vision" = dontDistribute super."gogol-vision"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "google-translate" = dontDistribute super."google-translate"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpio" = dontDistribute super."gpio"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk" = doDistribute super."gtk_0_14_2"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-buildtools" = doDistribute super."gtk2hs-buildtools_0_13_0_5"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3" = doDistribute super."gtk3_0_14_2"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = doDistribute super."gtksourceview3_0_13_2_1"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "guid" = dontDistribute super."guid"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hOpenPGP" = doDistribute super."hOpenPGP_2_4_4"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hablog" = dontDistribute super."hablog"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-processing" = dontDistribute super."hackage-processing"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-api" = doDistribute super."haddock-api_2_16_1"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "haddock-library" = doDistribute super."haddock-library_1_2_1"; + "haddock-test" = dontDistribute super."haddock-test"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-csv" = dontDistribute super."hakyll-contrib-csv"; + "hakyll-contrib-elm" = dontDistribute super."hakyll-contrib-elm"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "harvest-api" = dontDistribute super."harvest-api"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascar" = dontDistribute super."hascar"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashing" = dontDistribute super."hashing"; + "hashmap" = dontDistribute super."hashmap"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_3"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-fake-user-agent" = dontDistribute super."haskell-fake-user-agent"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = doDistribute super."haskell-gi_0_17_4"; + "haskell-gi-base" = doDistribute super."haskell-gi-base_0_17"; + "haskell-google-trends" = dontDistribute super."haskell-google-trends"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-packages" = dontDistribute super."haskell-packages"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-player" = dontDistribute super."haskell-player"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-proxy-list" = dontDistribute super."haskell-proxy-list"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tools-ast" = dontDistribute super."haskell-tools-ast"; + "haskell-tools-ast-fromghc" = dontDistribute super."haskell-tools-ast-fromghc"; + "haskell-tools-ast-gen" = dontDistribute super."haskell-tools-ast-gen"; + "haskell-tools-ast-trf" = dontDistribute super."haskell-tools-ast-trf"; + "haskell-tools-prettyprint" = dontDistribute super."haskell-tools-prettyprint"; + "haskell-tools-refactor" = dontDistribute super."haskell-tools-refactor"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskelzinc" = dontDistribute super."haskelzinc"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql-backend" = dontDistribute super."hasql-backend"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-dict" = dontDistribute super."hetero-dict"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hindley-milner" = dontDistribute super."hindley-milner"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinotify-bytestring" = dontDistribute super."hinotify-bytestring"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_5_2"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hip" = dontDistribute super."hip"; + "hipbot" = dontDistribute super."hipbot"; + "hipchat-hs" = dontDistribute super."hipchat-hs"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hit-graph" = dontDistribute super."hit-graph"; + "hjcase" = dontDistribute super."hjcase"; + "hjs" = dontDistribute super."hjs"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger" = doDistribute super."hledger_0_27"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-lib" = doDistribute super."hledger-lib_0_27"; + "hledger-ui" = doDistribute super."hledger-ui_0_27_4"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homoiconic" = dontDistribute super."homoiconic"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle" = doDistribute super."hoogle_4_2_43"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_18"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-docs" = dontDistribute super."hoppy-docs"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hpio" = dontDistribute super."hpio"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_2_0"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-popen" = dontDistribute super."hs-popen"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = doDistribute super."hspec-megaparsec_0_1_1"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-slow" = dontDistribute super."hspec-slow"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hssqlppp-th" = dontDistribute super."hssqlppp-th"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hsyslog-udp" = dontDistribute super."hsyslog-udp"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-parse" = dontDistribute super."html-parse"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client" = doDistribute super."http-client_0_4_30"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-openssl" = doDistribute super."http-client-openssl_0_2_0_2"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-trace" = dontDistribute super."http-trace"; + "http-wget" = dontDistribute super."http-wget"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hw-json" = doDistribute super."hw-json_0_0_0_2"; + "hw-prim" = doDistribute super."hw-prim_0_0_0_10"; + "hw-rankselect" = doDistribute super."hw-rankselect_0_0_0_2"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylide" = dontDistribute super."hylide"; + "hylogen" = dontDistribute super."hylogen"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identicon" = dontDistribute super."identicon"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = doDistribute super."idris_0_11_2"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_7"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "ilist" = dontDistribute super."ilist"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentation-core" = dontDistribute super."indentation-core"; + "indentation-parsec" = dontDistribute super."indentation-parsec"; + "indentation-trifecta" = dontDistribute super."indentation-trifecta"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c" = doDistribute super."inline-c_0_5_5_3"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; + "inline-r" = doDistribute super."inline-r_0_8_0_1"; + "inquire" = dontDistribute super."inquire"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instance-control" = dontDistribute super."instance-control"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "integer-simple" = dontDistribute super."integer-simple"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "interlude-l" = dontDistribute super."interlude-l"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "intero" = dontDistribute super."intero"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible" = dontDistribute super."invertible"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip" = dontDistribute super."ip"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-client" = doDistribute super."irc-client_0_3_0_0"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-conduit" = doDistribute super."irc-conduit_0_1_2_0"; + "irc-core" = dontDistribute super."irc-core"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "js-jquery" = doDistribute super."js-jquery_1_12_4"; + "jsaddle" = doDistribute super."jsaddle_0_3_0_3"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-aeson" = dontDistribute super."json-pointer-aeson"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; + "kangaroo" = dontDistribute super."kangaroo"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "khph" = dontDistribute super."khph"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdaya-bus" = dontDistribute super."lambdaya-bus"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dart" = dontDistribute super."language-dart"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_8_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "language-webidl" = dontDistribute super."language-webidl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazy-search" = dontDistribute super."lazy-search"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "ld-intervals" = dontDistribute super."ld-intervals"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leancheck" = dontDistribute super."leancheck"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "legion" = dontDistribute super."legion"; + "leksah" = dontDistribute super."leksah"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; + "lens-family-th" = doDistribute super."lens-family-th_0_4_1_0"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libroman" = dontDistribute super."libroman"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-transformer" = dontDistribute super."list-transformer"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; + "located-base" = dontDistribute super."located-base"; + "located-monad-logger" = dontDistribute super."located-monad-logger"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; + "ltl" = dontDistribute super."ltl"; + "lua-bc" = dontDistribute super."lua-bc"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucid-svg" = doDistribute super."lucid-svg_0_6_0_1"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; + "luka" = dontDistribute super."luka"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "mangopay" = dontDistribute super."mangopay"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "map-exts" = dontDistribute super."map-exts"; + "mappy" = dontDistribute super."mappy"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "means" = dontDistribute super."means"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_4_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "mellon-core" = dontDistribute super."mellon-core"; + "mellon-gpio" = dontDistribute super."mellon-gpio"; + "mellon-web" = dontDistribute super."mellon-web"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "merge-bash-history" = dontDistribute super."merge-bash-history"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "micrologger" = dontDistribute super."micrologger"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minlen" = dontDistribute super."minlen"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "mnist-idx" = dontDistribute super."mnist-idx"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "mohws" = dontDistribute super."mohws"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-hash" = dontDistribute super."monad-hash"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-log" = dontDistribute super."monad-log"; + "monad-logger" = doDistribute super."monad-logger_0_3_18"; + "monad-logger-prefix" = dontDistribute super."monad-logger-prefix"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-ste" = dontDistribute super."monad-ste"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-stm" = dontDistribute super."monad-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-timing" = dontDistribute super."monad-timing"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; + "mongoDB" = doDistribute super."mongoDB_2_0_10"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "mono-traversable" = doDistribute super."mono-traversable_0_10_2"; + "mono-traversable-instances" = dontDistribute super."mono-traversable-instances"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-subclasses" = doDistribute super."monoid-subclasses_0_4_2"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidal-containers" = doDistribute super."monoidal-containers_0_1_2_5"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "morph" = dontDistribute super."morph"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-containers" = doDistribute super."mutable-containers_0_3_2_1"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mywatch" = dontDistribute super."mywatch"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanovg" = dontDistribute super."nanovg"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "native" = dontDistribute super."native"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = doDistribute super."nested-routes_7_0_0"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-hans" = dontDistribute super."network-hans"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "neural" = dontDistribute super."neural"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "ngx-export" = dontDistribute super."ngx-export"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "nullpipe" = dontDistribute super."nullpipe"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = doDistribute super."octane_0_4_24"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "once" = doDistribute super."once_0_1_0_0"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-signals" = dontDistribute super."open-signals"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "operational-extra" = dontDistribute super."operational-extra"; + "opml" = dontDistribute super."opml"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-text" = dontDistribute super."optparse-text"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistic-tree" = dontDistribute super."order-statistic-tree"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "oscpacking" = dontDistribute super."oscpacking"; + "osm-conduit" = dontDistribute super."osm-conduit"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9_1_1"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_1"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "paranoia" = dontDistribute super."paranoia"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parseerror-eq" = dontDistribute super."parseerror-eq"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "perfecthash" = dontDistribute super."perfecthash"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistent" = doDistribute super."persistent_2_2_4_1"; + "persistent-audit" = dontDistribute super."persistent-audit"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-database-url" = dontDistribute super."persistent-database-url"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-mongoDB" = doDistribute super."persistent-mongoDB_2_1_4"; + "persistent-mysql" = doDistribute super."persistent-mysql_2_3_0_2"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_2"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-sqlite" = doDistribute super."persistent-sqlite_2_2_1"; + "persistent-template" = doDistribute super."persistent-template_2_1_8_1"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pg-store" = dontDistribute super."pg-store"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; + "phone-metadata" = dontDistribute super."phone-metadata"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_1"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_2_1"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_4"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-random" = dontDistribute super."pipes-random"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "point-octree" = dontDistribute super."point-octree"; + "pointed" = doDistribute super."pointed_4_2_0_2"; + "pointfree" = dontDistribute super."pointfree"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "pomodoro" = dontDistribute super."pomodoro"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-bind" = dontDistribute super."postgresql-simple-bind"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue" = dontDistribute super."pqueue"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-compat" = dontDistribute super."prelude-compat"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude2010" = dontDistribute super."prelude2010"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-spoon" = dontDistribute super."prim-spoon"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "pringletons" = dontDistribute super."pringletons"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_8"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "proto-lens" = dontDistribute super."proto-lens"; + "proto-lens-arbitrary" = dontDistribute super."proto-lens-arbitrary"; + "proto-lens-combinators" = dontDistribute super."proto-lens-combinators"; + "proto-lens-optparse" = dontDistribute super."proto-lens-optparse"; + "proto-lens-protoc" = dontDistribute super."proto-lens-protoc"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_2_0"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_2_0"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = dontDistribute super."psc-ide"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20160522"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse" = dontDistribute super."pulse"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_8_5_0"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "pursuit-client" = dontDistribute super."pursuit-client"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pusher-http-haskell" = doDistribute super."pusher-http-haskell_0_3_0_2"; + "pusher-ws" = dontDistribute super."pusher-ws"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "quantum-random" = dontDistribute super."quantum-random"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickbooks" = dontDistribute super."quickbooks"; + "quickcheck-combinators" = dontDistribute super."quickcheck-combinators"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quickterm" = dontDistribute super."quickterm"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; + "quiver-http" = dontDistribute super."quiver-http"; + "quiver-instances" = dontDistribute super."quiver-instances"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; + "quiver-sort" = dontDistribute super."quiver-sort"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "raaz" = dontDistribute super."raaz"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rapid" = dontDistribute super."rapid"; + "rascal" = dontDistribute super."rascal"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = doDistribute super."ratel_0_1_3"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "readshp" = dontDistribute super."readshp"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "rebase" = dontDistribute super."rebase"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-colonnade" = dontDistribute super."reflex-dom-colonnade"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-dom-helpers" = dontDistribute super."reflex-dom-helpers"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-jsx" = dontDistribute super."reflex-jsx"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-example" = dontDistribute super."rest-example"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb-client-driver" = doDistribute super."rethinkdb-client-driver_0_0_22"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rison" = dontDistribute super."rison"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "roundRobin" = dontDistribute super."roundRobin"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rts-loader" = dontDistribute super."rts-loader"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-exceptions" = dontDistribute super."safe-exceptions"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandi" = doDistribute super."sandi_0_3_6"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sarsi" = dontDistribute super."sarsi"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; + "sbv" = doDistribute super."sbv_5_11"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scotty-view" = dontDistribute super."scotty-view"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = dontDistribute super."second-transfer"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids" = doDistribute super."semigroupoids_5_0_1"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups" = doDistribute super."semigroups_0_18_1"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentence-jp" = dontDistribute super."sentence-jp"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serpentine" = dontDistribute super."serpentine"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant-aeson-specs" = dontDistribute super."servant-aeson-specs"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; + "servant-csharp" = dontDistribute super."servant-csharp"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-jquery" = dontDistribute super."servant-jquery"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-purescript" = dontDistribute super."servant-purescript"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; + "servant-response" = dontDistribute super."servant-response"; + "servant-router" = dontDistribute super."servant-router"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-subscriber" = dontDistribute super."servant-subscriber"; + "servant-swagger" = doDistribute super."servant-swagger_1_0_3"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "server-generic" = dontDistribute super."server-generic"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-language-c" = doDistribute super."shake-language-c_0_9_1"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-sass" = dontDistribute super."shakespeare-sass"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shine" = dontDistribute super."shine"; + "shine-varying" = dontDistribute super."shine-varying"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "show" = dontDistribute super."show"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-tar" = dontDistribute super."simple-tar"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "singletons" = doDistribute super."singletons_2_0_1"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "size-based" = dontDistribute super."size-based"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smsaero" = dontDistribute super."smsaero"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake" = dontDistribute super."snake"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-routes" = dontDistribute super."snap-routes"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "solga" = dontDistribute super."solga"; + "solr" = dontDistribute super."solr"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorted-list" = doDistribute super."sorted-list_0_1_6_1"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparkle" = dontDistribute super."sparkle"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "sproxy" = dontDistribute super."sproxy"; + "sproxy-web" = dontDistribute super."sproxy-web"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "sscript" = dontDistribute super."sscript"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stgi" = dontDistribute super."stgi"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_8_0"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "store" = dontDistribute super."store"; + "store-core" = dontDistribute super."store-core"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-http" = dontDistribute super."stratux-http"; + "stratux-types" = dontDistribute super."stratux-types"; + "stratux-websockets" = dontDistribute super."stratux-websockets"; + "stream" = dontDistribute super."stream"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-eversion" = dontDistribute super."streaming-eversion"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "streams" = doDistribute super."streams_3_2_1"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-data" = dontDistribute super."strict-data"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-core" = doDistribute super."stripe-core_2_0_3"; + "stripe-haskell" = doDistribute super."stripe-haskell_2_0_3"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_3"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structural-traversal" = dontDistribute super."structural-traversal"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "subwordgraph" = dontDistribute super."subwordgraph"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; + "suspend" = dontDistribute super."suspend"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_2_0_2"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symengine" = dontDistribute super."symengine"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "systemstats" = dontDistribute super."systemstats"; + "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-layout" = dontDistribute super."table-layout"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; + "tak" = dontDistribute super."tak"; + "tak-ai" = dontDistribute super."tak-ai"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempo" = dontDistribute super."tempo"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-fixture" = dontDistribute super."test-fixture"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testbench" = dontDistribute super."testbench"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-all" = dontDistribute super."text-all"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-conversions" = dontDistribute super."text-conversions"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-normalized" = dontDistribute super."text-icu-normalized"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-lips" = dontDistribute super."text-lips"; + "text-loc" = dontDistribute super."text-loc"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show" = doDistribute super."text-show_2_1_2"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-desugar" = doDistribute super."th-desugar_1_5_5"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "these" = doDistribute super."these_0_6_2_1"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = doDistribute super."tidal_0_7_1"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-serial" = dontDistribute super."tidal-serial"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timelens" = dontDistribute super."timelens"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; + "timelike-time" = dontDistribute super."timelike-time"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; + "tracker" = dontDistribute super."tracker"; + "traildb" = dontDistribute super."traildb"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compat" = doDistribute super."transformers-compat_0_4_0_4"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-eff" = dontDistribute super."transformers-eff"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "transient-universe" = dontDistribute super."transient-universe"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trifecta" = doDistribute super."trifecta_1_5_2"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turingMachine" = dontDistribute super."turingMachine"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cache" = dontDistribute super."type-cache"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-list" = doDistribute super."type-list_0_3_0_4"; + "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "uAgda" = dontDistribute super."uAgda"; + "uacpid" = dontDistribute super."uacpid"; + "uber" = dontDistribute super."uber"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unfoldable" = dontDistribute super."unfoldable"; + "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicode-transforms" = dontDistribute super."unicode-transforms"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = doDistribute super."union_0_1_1_0"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "unit-constraint" = dontDistribute super."unit-constraint"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-compat" = doDistribute super."unix-compat_0_4_1_4"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "unused" = dontDistribute super."unused"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "vectortiles" = dontDistribute super."vectortiles"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = doDistribute super."versions_2_0_0"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-operational" = dontDistribute super."vinyl-operational"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty" = doDistribute super."vty_5_5_0"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-extra" = doDistribute super."wai-extra_3_0_15_2"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-http2-extra" = dontDistribute super."wai-http2-extra"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger" = doDistribute super."wai-logger_2_2_7"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-make-assets" = dontDistribute super."wai-make-assets"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = doDistribute super."wai-middleware-verbs_0_2_0"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-mysql" = dontDistribute super."wai-session-mysql"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_6"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-inv-route" = dontDistribute super."web-inv-route"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = doDistribute super."webkitgtk3_0_14_1_1"; + "webkitgtk3-javascriptcore" = doDistribute super."webkitgtk3-javascriptcore_0_13_1_2"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = doDistribute super."werewolf_1_0_2_2"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikicfp-scraper" = dontDistribute super."wikicfp-scraper"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word-vector" = dontDistribute super."word-vector"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-conduit-decode" = dontDistribute super."xml-conduit-decode"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xpathdsv" = dontDistribute super."xpathdsv"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-api" = dontDistribute super."yahoo-finance-api"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yandex-translate" = dontDistribute super."yandex-translate"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-oauth2" = doDistribute super."yesod-auth-oauth2_0_1_10"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-ip" = dontDistribute super."yesod-ip"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-mangopay" = dontDistribute super."yesod-mangopay"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "z3-encoding" = dontDistribute super."z3-encoding"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 0ce122fa612..f8b1acc71fc 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -7341,8 +7341,8 @@ self: { }: mkDerivation { pname = "GLUtil"; - version = "0.9.0.1"; - sha256 = "573a5aca29e64cd2b7610c940235ec43b5a07d9b239fec030d3e3037dc7a1f59"; + version = "0.9.1.0"; + sha256 = "7f66dcdd5cdaa85d9ee14cbabb856e545b97f05ceeb55ce52ba1ef79ea33d3a9"; libraryHaskellDepends = [ array base bytestring containers directory filepath hpp JuicyPixels linear OpenGL OpenGLRaw transformers vector @@ -7847,8 +7847,8 @@ self: { }: mkDerivation { pname = "Glob"; - version = "0.7.8"; - sha256 = "15993a4b46d05d01d1d5541828e36ebdfa300ff7ef71205b152977b2192710e0"; + version = "0.7.9"; + sha256 = "a6c48b6a94971c00f8d1360c417275b1e0c089017db523df3f54729622567dbd"; libraryHaskellDepends = [ base containers directory dlist filepath transformers transformers-compat @@ -7864,30 +7864,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "Glob_0_7_9" = callPackage - ({ mkDerivation, base, containers, directory, dlist, filepath - , HUnit, QuickCheck, test-framework, test-framework-hunit - , test-framework-quickcheck2, transformers, transformers-compat - }: - mkDerivation { - pname = "Glob"; - version = "0.7.9"; - sha256 = "a6c48b6a94971c00f8d1360c417275b1e0c089017db523df3f54729622567dbd"; - libraryHaskellDepends = [ - base containers directory dlist filepath transformers - transformers-compat - ]; - testHaskellDepends = [ - base containers directory dlist filepath HUnit QuickCheck - test-framework test-framework-hunit test-framework-quickcheck2 - transformers transformers-compat - ]; - homepage = "http://iki.fi/matti.niemenmaa/glob/"; - description = "Globbing library"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "GlomeTrace" = callPackage ({ mkDerivation, array, base, GlomeVec }: mkDerivation { @@ -24750,7 +24726,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson-compat" = callPackage + "aeson-compat_0_3_4_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, base-compat, base-orphans , bytestring, containers, exceptions, hashable, nats, QuickCheck , quickcheck-instances, scientific, semigroups, tagged, tasty @@ -24775,6 +24751,36 @@ self: { homepage = "https://github.com/phadej/aeson-compat#readme"; description = "Compatibility layer for aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "aeson-compat" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-compat, base-orphans + , bytestring, containers, exceptions, hashable, nats, QuickCheck + , quickcheck-instances, scientific, semigroups, tagged, tasty + , tasty-hunit, tasty-quickcheck, text, time, time-locale-compat + , unordered-containers, vector + }: + mkDerivation { + pname = "aeson-compat"; + version = "0.3.5.0"; + sha256 = "41d1f49aecc72061afef3b018eb210c306c7ba6b469c6721a08b7adf3014346b"; + revision = "1"; + editedCabalFile = "709fa06125a3991ac7f6d5aea1b72f369b02dd63d57d94b4b5638fad94996012"; + libraryHaskellDepends = [ + aeson attoparsec base base-compat bytestring containers exceptions + hashable nats scientific semigroups tagged text time + time-locale-compat unordered-containers vector + ]; + testHaskellDepends = [ + aeson attoparsec base base-compat base-orphans bytestring + containers exceptions hashable nats QuickCheck quickcheck-instances + scientific semigroups tagged tasty tasty-hunit tasty-quickcheck + text time time-locale-compat unordered-containers vector + ]; + homepage = "https://github.com/phadej/aeson-compat#readme"; + description = "Compatibility layer for aeson"; + license = stdenv.lib.licenses.bsd3; }) {}; "aeson-diff" = callPackage @@ -26173,16 +26179,14 @@ self: { }) {}; "alarmclock" = callPackage - ({ mkDerivation, base, stm, time, unbounded-delays }: + ({ mkDerivation, async, base, clock, stm, time, unbounded-delays }: mkDerivation { pname = "alarmclock"; - version = "0.3.0.1"; - sha256 = "d3693f663ef88321859e1e8e3e662961cb6d8fca2fb41568fe173eb5ad9fd713"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base stm time unbounded-delays ]; - executableHaskellDepends = [ base time ]; - jailbreak = true; + version = "0.4.0.2"; + sha256 = "a84c412ac9ded121d1916ce05c9b5e33e35d0fdba1ae86a8202021ff1b28e91c"; + libraryHaskellDepends = [ + async base clock stm time unbounded-delays + ]; homepage = "https://bitbucket.org/davecturner/alarmclock"; description = "Wake up and perform an action at a certain time"; license = stdenv.lib.licenses.bsd3; @@ -29216,6 +29220,8 @@ self: { pname = "amazonka-core"; version = "1.4.1"; sha256 = "609024a35a4ce8e3561e513de2a36b44c1250163ad54ee6970cdce2a14fca33a"; + revision = "1"; + editedCabalFile = "be48f9c4426d35c2a9540d7828cc78d09cac516b19a7710fb7954b841f28b9cb"; libraryHaskellDepends = [ aeson attoparsec base bifunctors bytestring case-insensitive conduit conduit-extra cryptonite deepseq exceptions hashable @@ -29248,6 +29254,8 @@ self: { pname = "amazonka-core"; version = "1.4.2"; sha256 = "57d9e816a3b3f378899a6bf32216dcab077ebb831828c57c6ad901308d5ee398"; + revision = "1"; + editedCabalFile = "8bd4e8d5e7b9697e88550af98f1e3c1c551cac7f3a26c025dbd0c3e1c581708b"; libraryHaskellDepends = [ aeson attoparsec base bifunctors bytestring case-insensitive conduit conduit-extra cryptonite deepseq exceptions hashable @@ -29279,6 +29287,8 @@ self: { pname = "amazonka-core"; version = "1.4.3"; sha256 = "8270e26104bb0cbc7654d3522dce631c9804b433ec9ff5a2a0c7f844938eead0"; + revision = "1"; + editedCabalFile = "c2a93b788f323072f99ab6c120449c605f9249ba5e44d9e56221fa95b5254dba"; libraryHaskellDepends = [ aeson attoparsec base bifunctors bytestring case-insensitive conduit conduit-extra cryptonite deepseq exceptions hashable @@ -39099,6 +39109,28 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "authenticate_1_3_3_2" = callPackage + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring + , case-insensitive, conduit, containers, http-conduit, http-types + , monad-control, network-uri, resourcet, tagstream-conduit, text + , transformers, unordered-containers, xml-conduit + }: + mkDerivation { + pname = "authenticate"; + version = "1.3.3.2"; + sha256 = "a65ff7791e646ea847fc6b8369addeecf6d2c3055a0b7ebe1421881103656e30"; + libraryHaskellDepends = [ + aeson attoparsec base blaze-builder bytestring case-insensitive + conduit containers http-conduit http-types monad-control + network-uri resourcet tagstream-conduit text transformers + unordered-containers xml-conduit + ]; + homepage = "http://github.com/yesodweb/authenticate"; + description = "Authentication methods for Haskell web applications"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "authenticate-kerberos" = callPackage ({ mkDerivation, base, process, text }: mkDerivation { @@ -40970,6 +41002,40 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "b9_0_5_21" = callPackage + ({ mkDerivation, aeson, async, base, bifunctors, binary, boxes + , bytestring, conduit, conduit-extra, ConfigFile, directory + , filepath, free, hashable, hspec, hspec-expectations, mtl + , optparse-applicative, parallel, parsec, pretty, pretty-show + , process, QuickCheck, random, semigroups, syb, template, text + , time, transformers, unordered-containers, vector, yaml + }: + mkDerivation { + pname = "b9"; + version = "0.5.21"; + sha256 = "a7db049d73b0800399cef22fa016932cd5699d6faf9f6056a350eae1952f6cb4"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson async base bifunctors binary boxes bytestring conduit + conduit-extra ConfigFile directory filepath free hashable mtl + parallel parsec pretty pretty-show process QuickCheck random + semigroups syb template text time transformers unordered-containers + vector yaml + ]; + executableHaskellDepends = [ + base bytestring directory optparse-applicative + ]; + testHaskellDepends = [ + aeson base bytestring hspec hspec-expectations QuickCheck + semigroups text unordered-containers vector yaml + ]; + homepage = "https://github.com/sheyll/b9-vm-image-builder"; + description = "A tool and library for building virtual machine images"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "babylon" = callPackage ({ mkDerivation, array, base, containers, random, wx, wxcore }: mkDerivation { @@ -51612,25 +51678,34 @@ self: { }) {}; "cabal2nix" = callPackage - ({ mkDerivation, base, Cabal, containers, deepseq, directory - , doctest, filepath, hackage-db, mtl, pretty, process, regex-posix - , transformers + ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, Cabal + , containers, deepseq, directory, distribution-nixpkgs, filepath + , hackage-db, language-nix, lens, monad-par, monad-par-extras, mtl + , optparse-applicative, pretty, process, SHA, split, stackage-types + , text, time, transformers, utf8-string, yaml }: mkDerivation { pname = "cabal2nix"; - version = "1.73"; - sha256 = "3bf693e683847ca4fc5326b842b015989cc2f90c0be85870aa1ca932516653db"; - revision = "5"; - editedCabalFile = "54866b8081ddfc72761c1f38cc96df6782682058cd09b465300562910f57e2ea"; - isLibrary = false; + version = "2.0"; + sha256 = "cc9e277133d371d8ffd8e0755464051f132775e1400981573db26aef7610c152"; + revision = "1"; + editedCabalFile = "ac3c02fa357a9aa1e262de189e43e935cbe7aab9b313bb355314884cb5a0307d"; + isLibrary = true; isExecutable = true; - executableHaskellDepends = [ - base Cabal containers deepseq directory filepath hackage-db mtl - pretty process regex-posix transformers + libraryHaskellDepends = [ + aeson ansi-wl-pprint base bytestring Cabal containers deepseq + directory distribution-nixpkgs filepath hackage-db language-nix + lens optparse-applicative pretty process SHA split text + transformers yaml ]; - testHaskellDepends = [ base doctest ]; - jailbreak = true; - homepage = "http://github.com/NixOS/cabal2nix"; + executableHaskellDepends = [ + aeson ansi-wl-pprint base bytestring Cabal containers deepseq + directory distribution-nixpkgs filepath hackage-db language-nix + lens monad-par monad-par-extras mtl optparse-applicative pretty + process SHA split stackage-types text time transformers utf8-string + yaml + ]; + homepage = "https://github.com/nixos/cabal2nix#readme"; description = "Convert Cabal files into Nix build instructions"; license = stdenv.lib.licenses.bsd3; maintainers = with stdenv.lib.maintainers; [ peti ]; @@ -55214,7 +55289,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "chunked-data" = callPackage + "chunked-data_0_2_0" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, containers , mono-traversable, semigroups, text, transformers, vector }: @@ -55231,6 +55306,23 @@ self: { homepage = "https://github.com/fpco/chunked-data"; description = "Typeclasses for dealing with various chunked data representations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "chunked-data" = callPackage + ({ mkDerivation, base, bytestring, containers, semigroups, text + , transformers, vector + }: + mkDerivation { + pname = "chunked-data"; + version = "0.3.0"; + sha256 = "e1be9da64c3682fd907aa9f1a118e8bfba7964d509fddf54bd245b199dc15f2f"; + libraryHaskellDepends = [ + base bytestring containers semigroups text transformers vector + ]; + homepage = "https://github.com/snoyberg/mono-traversable"; + description = "Typeclasses for dealing with various chunked data representations"; + license = stdenv.lib.licenses.mit; }) {}; "chunks" = callPackage @@ -57589,7 +57681,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "classy-prelude" = callPackage + "classy-prelude_0_12_8" = callPackage ({ mkDerivation, base, basic-prelude, bifunctors, bytestring , chunked-data, containers, dlist, enclosed-exceptions, exceptions , ghc-prim, hashable, hspec, lifted-base, mono-traversable, mtl @@ -57614,6 +57706,37 @@ self: { homepage = "https://github.com/snoyberg/classy-prelude"; description = "A typeclass-based Prelude"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "classy-prelude" = callPackage + ({ mkDerivation, async, base, basic-prelude, bifunctors, bytestring + , chunked-data, containers, deepseq, dlist, exceptions, ghc-prim + , hashable, hspec, lifted-async, lifted-base, monad-unlift + , mono-traversable, mono-traversable-instances, mtl + , mutable-containers, primitive, QuickCheck, safe-exceptions + , semigroups, stm, text, time, time-locale-compat, transformers + , transformers-base, unordered-containers, vector, vector-instances + }: + mkDerivation { + pname = "classy-prelude"; + version = "1.0.0"; + sha256 = "066603ee1d29d5738d34076870003d211632712251a7124983828fe4763c23b7"; + libraryHaskellDepends = [ + async base basic-prelude bifunctors bytestring chunked-data + containers deepseq dlist exceptions ghc-prim hashable lifted-async + lifted-base monad-unlift mono-traversable + mono-traversable-instances mtl mutable-containers primitive + safe-exceptions semigroups stm text time time-locale-compat + transformers transformers-base unordered-containers vector + vector-instances + ]; + testHaskellDepends = [ + base containers hspec QuickCheck transformers unordered-containers + ]; + homepage = "https://github.com/snoyberg/mono-traversable"; + description = "A typeclass-based Prelude"; + license = stdenv.lib.licenses.mit; }) {}; "classy-prelude-conduit_0_10_2" = callPackage @@ -57873,7 +57996,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "classy-prelude-conduit" = callPackage + "classy-prelude-conduit_0_12_8" = callPackage ({ mkDerivation, base, bytestring, classy-prelude, conduit , conduit-combinators, hspec, monad-control, QuickCheck, resourcet , transformers, void @@ -57889,9 +58012,32 @@ self: { testHaskellDepends = [ base bytestring conduit hspec QuickCheck transformers ]; + jailbreak = true; homepage = "https://github.com/snoyberg/classy-prelude"; description = "conduit instances for classy-prelude"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "classy-prelude-conduit" = callPackage + ({ mkDerivation, base, bytestring, classy-prelude, conduit + , conduit-combinators, hspec, monad-control, QuickCheck, resourcet + , transformers, void + }: + mkDerivation { + pname = "classy-prelude-conduit"; + version = "1.0.0"; + sha256 = "248b3a30c6da08400039b5a9485039319e059c52927edf2a1dbcd6a9089da22e"; + libraryHaskellDepends = [ + base bytestring classy-prelude conduit conduit-combinators + monad-control resourcet transformers void + ]; + testHaskellDepends = [ + base bytestring conduit hspec QuickCheck transformers + ]; + homepage = "https://github.com/snoyberg/mono-traversable"; + description = "classy-prelude together with conduit functions"; + license = stdenv.lib.licenses.mit; }) {}; "classy-prelude-yesod_0_10_2" = callPackage @@ -58125,7 +58271,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "classy-prelude-yesod" = callPackage + "classy-prelude-yesod_0_12_8" = callPackage ({ mkDerivation, aeson, base, classy-prelude , classy-prelude-conduit, data-default, http-conduit, http-types , persistent, yesod, yesod-newsfeed, yesod-static @@ -58139,9 +58285,30 @@ self: { http-conduit http-types persistent yesod yesod-newsfeed yesod-static ]; + jailbreak = true; homepage = "https://github.com/snoyberg/classy-prelude"; description = "Provide a classy prelude including common Yesod functionality"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "classy-prelude-yesod" = callPackage + ({ mkDerivation, aeson, base, classy-prelude + , classy-prelude-conduit, data-default, http-conduit, http-types + , persistent, yesod, yesod-newsfeed, yesod-static + }: + mkDerivation { + pname = "classy-prelude-yesod"; + version = "1.0.0"; + sha256 = "12ac3f4b72302cf18a7ebd5a836eb8cfe22729cbcd1f0a723db047c2b80a9ce2"; + libraryHaskellDepends = [ + aeson base classy-prelude classy-prelude-conduit data-default + http-conduit http-types persistent yesod yesod-newsfeed + yesod-static + ]; + homepage = "https://github.com/snoyberg/mono-traversable"; + description = "Provide a classy prelude including common Yesod functionality"; + license = stdenv.lib.licenses.mit; }) {}; "clay_0_10_1" = callPackage @@ -62293,7 +62460,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit-combinators" = callPackage + "conduit-combinators_1_0_3_1" = callPackage ({ mkDerivation, base, base16-bytestring, base64-bytestring , bytestring, chunked-data, conduit, conduit-extra, containers , directory, filepath, hspec, monad-control, mono-traversable, mtl @@ -62319,6 +62486,35 @@ self: { homepage = "https://github.com/fpco/conduit-combinators"; description = "Commonly used conduit functions, for both chunked and unchunked data"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "conduit-combinators" = callPackage + ({ mkDerivation, base, base16-bytestring, base64-bytestring + , bytestring, chunked-data, conduit, conduit-extra, containers + , directory, filepath, hspec, monad-control, mono-traversable, mtl + , mwc-random, primitive, QuickCheck, resourcet, safe, silently + , text, transformers, transformers-base, unix, unix-compat, vector + , void + }: + mkDerivation { + pname = "conduit-combinators"; + version = "1.0.4"; + sha256 = "75a90da15f7bd70748ebb3a3612d50896e421d8fdbaa4879e8aabfbeaf4dc7de"; + libraryHaskellDepends = [ + base base16-bytestring base64-bytestring bytestring chunked-data + conduit conduit-extra filepath monad-control mono-traversable + mwc-random primitive resourcet text transformers transformers-base + unix unix-compat vector void + ]; + testHaskellDepends = [ + base base16-bytestring base64-bytestring bytestring chunked-data + conduit containers directory filepath hspec mono-traversable mtl + mwc-random QuickCheck safe silently text transformers vector + ]; + homepage = "https://github.com/snoyberg/mono-traversable"; + description = "Commonly used conduit functions, for both chunked and unchunked data"; + license = stdenv.lib.licenses.mit; }) {}; "conduit-connection" = callPackage @@ -62723,7 +62919,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit-extra" = callPackage + "conduit-extra_1_1_13_1" = callPackage ({ mkDerivation, async, attoparsec, base, blaze-builder, bytestring , bytestring-builder, conduit, directory, exceptions, filepath , hspec, monad-control, network, primitive, process, QuickCheck @@ -62747,6 +62943,33 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Batteries included conduit: adapters for common libraries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "conduit-extra" = callPackage + ({ mkDerivation, async, attoparsec, base, blaze-builder, bytestring + , bytestring-builder, conduit, directory, exceptions, filepath + , hspec, monad-control, network, primitive, process, QuickCheck + , resourcet, stm, streaming-commons, text, transformers + , transformers-base + }: + mkDerivation { + pname = "conduit-extra"; + version = "1.1.13.2"; + sha256 = "9fccd20c45b017c5b5b12a933b1cedd9088f27375c6b7bb2dadce9db92d51b81"; + libraryHaskellDepends = [ + async attoparsec base blaze-builder bytestring conduit directory + exceptions filepath monad-control network primitive process + resourcet stm streaming-commons text transformers transformers-base + ]; + testHaskellDepends = [ + async attoparsec base blaze-builder bytestring bytestring-builder + conduit exceptions hspec process QuickCheck resourcet stm + streaming-commons text transformers transformers-base + ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Batteries included conduit: adapters for common libraries"; + license = stdenv.lib.licenses.mit; }) {}; "conduit-iconv" = callPackage @@ -62966,8 +63189,8 @@ self: { }: mkDerivation { pname = "configifier"; - version = "0.1.0"; - sha256 = "bda7c1ae24e838204f972f64816e6e7ec5552b3ea03a2e17eb5c9e9ea9ad030e"; + version = "0.1.1"; + sha256 = "52cbd5b32d438766e655104e583baa5379e618bc2526382c970bde313db72e11"; libraryHaskellDepends = [ base bytestring case-insensitive containers directory either functor-infix mtl safe string-conversions template-haskell @@ -63539,8 +63762,8 @@ self: { }: mkDerivation { pname = "consumers"; - version = "1.1"; - sha256 = "0a0c574fcc036653364d75f7ec597310bf8e0952acd9de97f97febb7d7cc958c"; + version = "2.0"; + sha256 = "467af01ed4ce5f5240c16a0693e32f27f1f098723d11c7f1eab004d08f285995"; libraryHaskellDepends = [ base containers exceptions hpqtypes lifted-base lifted-threads log monad-control mtl stm time transformers-base @@ -82199,8 +82422,8 @@ self: { ({ mkDerivation, base, directory, filepath, split, text, time }: mkDerivation { pname = "elm-hybrid"; - version = "0.1.2.1"; - sha256 = "ff3d6062a417c3fee7d37bfc781edae4b5dc7ebdea880c0c9f1e4c290e601764"; + version = "0.1.3.0"; + sha256 = "c911c4040e4d12ba65127a125c041bf0390da3b503d01913f269eeb9fb3272fe"; libraryHaskellDepends = [ base directory filepath split text time ]; @@ -82758,6 +82981,8 @@ self: { pname = "enclosed-exceptions"; version = "1.0.2"; sha256 = "7b9beab82d219c0dd879dfdef70fb74a4a7595b4dbd0baf7adb12cdbbe8189f1"; + revision = "1"; + editedCabalFile = "40b6f9bc9de19819e54b215008a8b60862f2558119dc49e7c747a5bac4435566"; libraryHaskellDepends = [ base deepseq lifted-base monad-control transformers transformers-base @@ -84784,8 +85009,8 @@ self: { }: mkDerivation { pname = "eventstore"; - version = "0.13.0.1"; - sha256 = "eec222913fbc5f52e74216536a0344084a9bc689324d922813a9bf46ecd421c7"; + version = "0.13.1.2"; + sha256 = "b519ae59c56c345cc2abe2bc6a779627d35c5553e9c0cfd51cb4aea4db9538fc"; libraryHaskellDepends = [ aeson array async base bytestring cereal connection containers dns dotnet-timespan http-client protobuf random semigroups stm text @@ -96928,14 +97153,14 @@ self: { }: mkDerivation { pname = "ghcjs-hplay"; - version = "0.2"; - sha256 = "26da808173d1d113fa4fc1270d8ee30c7d957e59dfe251d32f9fdb94ee6065ea"; + version = "0.3.2"; + sha256 = "13909a7390cc963def4ae053950f0ef8346df85c9370c2ae5a650cb4f29793f6"; libraryHaskellDepends = [ base containers ghcjs-perch mtl transformers transient transient-universe ]; - homepage = "https://github.com/agocorona/hplayground"; - description = "monadic, reactive Formlets running in the Web browser"; + homepage = "https://github.com/agocorona/ghcjs-hplay"; + description = "client-side Web EDSL for transient nodes running in the Web browser"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -101322,6 +101547,8 @@ self: { pname = "gogol-core"; version = "0.1.0"; sha256 = "2284f49106b41cc0ea81c848a5b5c31f0a7bcb2fc5c604519451238cbc3c01b0"; + revision = "1"; + editedCabalFile = "11dbfa4b8778e6b446b60ad1add04d9049169936f6f762d45a3e727e92d5a0b6"; libraryHaskellDepends = [ aeson attoparsec base bifunctors bytestring case-insensitive conduit dlist exceptions hashable http-api-data http-client @@ -110503,8 +110730,8 @@ self: { }: mkDerivation { pname = "hascar"; - version = "0.2.0.0"; - sha256 = "49511606fcf42e810e62822dcf2a473dd4692816c103ada2d1f2f7f75cc12deb"; + version = "0.2.0.1"; + sha256 = "5ef1d2278594fb13875421c882ce04aadbffd764ab789c99dbee4d6e47a85365"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -119341,7 +119568,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "highlighting-kate" = callPackage + "highlighting-kate_0_6_2" = callPackage ({ mkDerivation, base, blaze-html, bytestring, containers, Diff , directory, filepath, mtl, parsec, pcre-light, process , utf8-string @@ -119361,9 +119588,10 @@ self: { homepage = "http://github.com/jgm/highlighting-kate"; description = "Syntax highlighting"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "highlighting-kate_0_6_2_1" = callPackage + "highlighting-kate" = callPackage ({ mkDerivation, base, blaze-html, bytestring, containers, Diff , directory, filepath, mtl, parsec, pcre-light, process , utf8-string @@ -119383,7 +119611,6 @@ self: { homepage = "http://github.com/jgm/highlighting-kate"; description = "Syntax highlighting"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hills" = callPackage @@ -123101,6 +123328,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hoauth2_0_5_5_0" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-conduit, http-types + , text, unordered-containers + }: + mkDerivation { + pname = "hoauth2"; + version = "0.5.5.0"; + sha256 = "77efb0b5c6436de7c63e4e40f402d7328f7a4aff60102a44ed3bf60fe3527e1d"; + libraryHaskellDepends = [ + aeson base bytestring http-conduit http-types text + unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/freizl/hoauth2"; + description = "Haskell OAuth2 authentication client"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hob" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , glib, gtk-largeTreeStore, gtk3, gtksourceview3, hspec, mtl, pango @@ -125456,10 +125702,8 @@ self: { ({ mkDerivation, base, directory, filepath, time, transformers }: mkDerivation { pname = "hpp"; - version = "0.3.0.0"; - sha256 = "315ae6e38a713c1ba914416cd22f271508e981c763ed52701aa71f1be262aae4"; - revision = "1"; - editedCabalFile = "5ef421d204fc6528ed11e44bb4c507fd7f25e5afc33f80b6a78275af909aa0de"; + version = "0.3.1.0"; + sha256 = "1ec268eee4adc227768a22e601fe8ca1f90170705b44186e9522f791172842ee"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -125474,17 +125718,17 @@ self: { "hpqtypes" = callPackage ({ mkDerivation, aeson, base, bytestring, containers , data-default-class, exceptions, lifted-base, monad-control, mtl - , postgresql, resource-pool, text, time, transformers + , postgresql, resource-pool, text, text-show, time, transformers , transformers-base, vector }: mkDerivation { pname = "hpqtypes"; - version = "1.4.4"; - sha256 = "4e1bcfc35caaa8abcee28316f8b0bdd6fadbebe223bacfb3118dec4d980fee36"; + version = "1.5.0"; + sha256 = "24c9d41d67f3df33fcf00d6eb03e9a9d0a6be8decf1488383696d1b0a44bb5ba"; libraryHaskellDepends = [ aeson base bytestring containers data-default-class exceptions - lifted-base monad-control mtl resource-pool text time transformers - transformers-base vector + lifted-base monad-control mtl resource-pool text text-show time + transformers transformers-base vector ]; librarySystemDepends = [ postgresql ]; homepage = "https://github.com/scrive/hpqtypes"; @@ -132299,7 +132543,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-client" = callPackage + "http-client_0_4_30" = callPackage ({ mkDerivation, array, async, base, base64-bytestring , blaze-builder, bytestring, case-insensitive, containers, cookie , data-default-class, deepseq, directory, exceptions, filepath @@ -132327,6 +132571,69 @@ self: { homepage = "https://github.com/snoyberg/http-client"; description = "An HTTP client engine, intended as a base layer for more user-friendly packages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http-client" = callPackage + ({ mkDerivation, array, async, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, exceptions, filepath + , ghc-prim, hspec, http-types, mime-types, monad-control, network + , network-uri, random, streaming-commons, text, time, transformers + , zlib + }: + mkDerivation { + pname = "http-client"; + version = "0.4.31"; + sha256 = "3f3693508bd4099159f183d6bb8432d6b7a654f1d7ddf9b167a3372a91463b74"; + libraryHaskellDepends = [ + array base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie data-default-class deepseq + exceptions filepath ghc-prim http-types mime-types network + network-uri random streaming-commons text time transformers + ]; + testHaskellDepends = [ + async base base64-bytestring blaze-builder bytestring + case-insensitive containers deepseq directory hspec http-types + monad-control network network-uri streaming-commons text time + transformers zlib + ]; + doCheck = false; + homepage = "https://github.com/snoyberg/http-client"; + description = "An HTTP client engine, intended as a base layer for more user-friendly packages"; + license = stdenv.lib.licenses.mit; + }) {}; + + "http-client_0_5_0" = callPackage + ({ mkDerivation, array, async, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , deepseq, directory, exceptions, filepath, ghc-prim, hspec + , http-types, mime-types, monad-control, network, network-uri + , random, streaming-commons, text, time, transformers, zlib + }: + mkDerivation { + pname = "http-client"; + version = "0.5.0"; + sha256 = "5915ab9377690d4cb497440d7294e5e14265f2fe74d79b7e484a3883a383ca9a"; + revision = "1"; + editedCabalFile = "308e6f73c0a374472ec5221299fafbfc48888ac9d1e853416b01d4697756c3fe"; + libraryHaskellDepends = [ + array base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie deepseq exceptions filepath + ghc-prim http-types mime-types network network-uri random + streaming-commons text time transformers + ]; + testHaskellDepends = [ + async base base64-bytestring blaze-builder bytestring + case-insensitive containers deepseq directory hspec http-types + monad-control network network-uri streaming-commons text time + transformers zlib + ]; + doCheck = false; + homepage = "https://github.com/snoyberg/http-client"; + description = "An HTTP client engine"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-client-auth" = callPackage @@ -132409,7 +132716,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-client-openssl" = callPackage + "http-client-openssl_0_2_0_2" = callPackage ({ mkDerivation, base, HsOpenSSL, hspec, http-client, http-types , network }: @@ -132425,6 +132732,25 @@ self: { homepage = "https://github.com/snoyberg/http-client"; description = "http-client backend using the OpenSSL library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http-client-openssl" = callPackage + ({ mkDerivation, base, HsOpenSSL, hspec, http-client, http-types + , network + }: + mkDerivation { + pname = "http-client-openssl"; + version = "0.2.0.3"; + sha256 = "0f74d00124e67cfd9c67c042c6a5e0a0e74bff53839cd68e6f07bff3fab1b77d"; + libraryHaskellDepends = [ base HsOpenSSL http-client network ]; + testHaskellDepends = [ + base HsOpenSSL hspec http-client http-types + ]; + doCheck = false; + homepage = "https://github.com/snoyberg/http-client"; + description = "http-client backend using the OpenSSL library"; + license = stdenv.lib.licenses.mit; }) {}; "http-client-request-modifiers" = callPackage @@ -132538,6 +132864,27 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "http-client-tls_0_3_0" = callPackage + ({ mkDerivation, base, bytestring, connection, data-default-class + , hspec, http-client, http-types, network, tls + }: + mkDerivation { + pname = "http-client-tls"; + version = "0.3.0"; + sha256 = "811b30a53156dc12e3eb34f8921778f081521ef388b7f4d7ce6c59d086cb3358"; + libraryHaskellDepends = [ + base bytestring connection data-default-class http-client network + tls + ]; + testHaskellDepends = [ base hspec http-client http-types ]; + jailbreak = true; + doCheck = false; + homepage = "https://github.com/snoyberg/http-client"; + description = "http-client backend using the connection package and tls library"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "http-common" = callPackage ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring , case-insensitive, directory, mtl, network, text, transformers @@ -132807,6 +133154,40 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "http-conduit_2_2_0" = callPackage + ({ mkDerivation, aeson, base, blaze-builder, bytestring + , case-insensitive, conduit, conduit-extra, connection, cookie + , data-default-class, exceptions, hspec, http-client + , http-client-tls, http-types, HUnit, lifted-base, monad-control + , mtl, network, resourcet, streaming-commons, temporary, text, time + , transformers, utf8-string, wai, wai-conduit, warp, warp-tls + }: + mkDerivation { + pname = "http-conduit"; + version = "2.2.0"; + sha256 = "ba3dbc20b8be238386928405af52cadb33c0c8bdf0f3e97236a4b958a5a09510"; + revision = "1"; + editedCabalFile = "372b74352618af28ae28dca7d7b4cbe38e07f0e132554e15f4376f8ae1ef6617"; + libraryHaskellDepends = [ + aeson base bytestring conduit conduit-extra exceptions http-client + http-client-tls http-types lifted-base monad-control mtl resourcet + transformers + ]; + testHaskellDepends = [ + aeson base blaze-builder bytestring case-insensitive conduit + conduit-extra connection cookie data-default-class hspec + http-client http-types HUnit lifted-base network resourcet + streaming-commons temporary text time transformers utf8-string wai + wai-conduit warp warp-tls + ]; + jailbreak = true; + doCheck = false; + homepage = "http://www.yesodweb.com/book/http-conduit"; + description = "HTTP client package with conduit interface and HTTPS support"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "http-conduit-browser" = callPackage ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring , case-insensitive, conduit, containers, cookie, data-default @@ -138472,6 +138853,7 @@ self: { base indentation-core indentation-parsec indentation-trifecta mtl parsec parsers trifecta ]; + jailbreak = true; homepage = "https://bitbucket.org/adamsmd/indentation"; description = "Indentation sensitive parsing combinators for Parsec and Trifecta"; license = stdenv.lib.licenses.bsd3; @@ -138516,6 +138898,7 @@ self: { base indentation-core mtl parsers trifecta ]; testHaskellDepends = [ base tasty tasty-hunit trifecta ]; + jailbreak = true; homepage = "https://bitbucket.org/adamsmd/indentation"; description = "Indentation sensitive parsing combinators for Trifecta"; license = stdenv.lib.licenses.bsd3; @@ -139067,7 +139450,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "inline-c" = callPackage + "inline-c_0_5_5_3" = callPackage ({ mkDerivation, ansi-wl-pprint, base, binary, bytestring , containers, cryptohash, directory, filepath, hashable, hspec, mtl , parsec, parsers, QuickCheck, raw-strings-qq, regex-posix @@ -139092,6 +139475,31 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "inline-c" = callPackage + ({ mkDerivation, ansi-wl-pprint, base, binary, bytestring + , containers, cryptohash, directory, filepath, hashable, hspec, mtl + , parsec, parsers, QuickCheck, raw-strings-qq, regex-posix + , template-haskell, transformers, unordered-containers, vector + }: + mkDerivation { + pname = "inline-c"; + version = "0.5.5.4"; + sha256 = "4cd7a9dfce3866033cfe6eac1168eb2e6ddb29f6110c5de9d728c474a93a18bf"; + libraryHaskellDepends = [ + ansi-wl-pprint base binary bytestring containers cryptohash + directory filepath hashable mtl parsec parsers QuickCheck + template-haskell transformers unordered-containers vector + ]; + testHaskellDepends = [ + ansi-wl-pprint base containers hashable hspec parsers QuickCheck + raw-strings-qq regex-posix template-haskell transformers + unordered-containers vector + ]; + description = "Write Haskell source files including C code inline. No FFI required."; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "inline-c-cpp" = callPackage ({ mkDerivation, base, inline-c, template-haskell }: mkDerivation { @@ -142956,8 +143364,8 @@ self: { }: mkDerivation { pname = "jsaddle"; - version = "0.4.0.3"; - sha256 = "b79e6ec970c9750cb280040479a85c3c5bb3c6faf728e03efee25eb16444a343"; + version = "0.4.0.4"; + sha256 = "42a946c2198ad33398c884df9e1385e3b16097ea4945b43d9a2eddbce2ad0e05"; libraryHaskellDepends = [ base gi-glib gi-gtk gi-javascriptcore gi-webkit haskell-gi-base lens template-haskell text transformers webkitgtk3-javascriptcore @@ -152950,9 +153358,10 @@ self: { ({ mkDerivation, base, bytestring, containers, hashable }: mkDerivation { pname = "lio"; - version = "0.11.5.0"; - sha256 = "229c64f8b6580e6eb2cecf0899e06489573f5a05d32e54306b28a1d051f0b182"; + version = "0.11.6.0"; + sha256 = "2643b4925f8d4d92cc9072dd5526b28eac6eb0e606861077f431495019efd4d3"; libraryHaskellDepends = [ base bytestring containers hashable ]; + homepage = "https://github.com/plsyssec/lio"; description = "Labeled IO Information Flow Control Library"; license = "GPL"; }) {}; @@ -153594,6 +154003,18 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "list-transformer" = callPackage + ({ mkDerivation, base, mtl }: + mkDerivation { + pname = "list-transformer"; + version = "1.0.0"; + sha256 = "8e653ddd1f5ca44f6611fbc636431e4eedc778da4f2b6e1cce0aa3ddcf7c037d"; + libraryHaskellDepends = [ base mtl ]; + homepage = "https://github.com/Gabriel439/Haskell-List-Transformer-Library"; + description = "List monad transformer"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "list-tries" = callPackage ({ mkDerivation, base, binary, ChasingBottoms, containers, dlist , HUnit, QuickCheck, template-haskell, test-framework @@ -154376,19 +154797,20 @@ self: { "log" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring - , bytestring, deepseq, exceptions, hpqtypes, lifted-base - , monad-control, monad-time, mtl, old-locale, split, stm, text - , time, transformers-base, unordered-containers, vector + , bloodhound, bytestring, cond, deepseq, exceptions, hpqtypes + , http-client, lifted-base, monad-control, monad-time, mtl + , old-locale, split, stm, text, text-show, time, transformers + , transformers-base, unordered-containers, vector }: mkDerivation { pname = "log"; - version = "0.4"; - sha256 = "0358e82bd4e261545fefbf197eac335daa5e05987948dc322b7e16439755132f"; + version = "0.5.0"; + sha256 = "d73310d807d3caecec03911c06d0e7a374956ed1030910c6c477bac6af3ccdf5"; libraryHaskellDepends = [ - aeson aeson-pretty base base64-bytestring bytestring deepseq - exceptions hpqtypes lifted-base monad-control monad-time mtl - old-locale split stm text time transformers-base - unordered-containers vector + aeson aeson-pretty base base64-bytestring bloodhound bytestring + cond deepseq exceptions hpqtypes http-client lifted-base + monad-control monad-time mtl old-locale split stm text text-show + time transformers transformers-base unordered-containers vector ]; homepage = "https://github.com/scrive/log"; description = "Structured logging solution with multiple backends"; @@ -156595,6 +157017,7 @@ self: { libraryHaskellDepends = [ base bytestring chunked-data machines transformers ]; + jailbreak = true; homepage = "http://github.com/aloiscochard/machines-io"; description = "IO utilities for the machines library"; license = stdenv.lib.licenses.asl20; @@ -160355,30 +160778,30 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microlens" = callPackage + "microlens_0_4_4_3" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "microlens"; version = "0.4.4.3"; sha256 = "b76878b66c43b2a2a131bfe99e163f95a736c94b8c48fa7b22c81549c4c07526"; libraryHaskellDepends = [ base ]; - doHaddock = false; homepage = "http://github.com/aelve/microlens"; description = "A tiny lens library with no dependencies. If you're writing an app, you probably want microlens-platform, not this."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microlens_0_4_5_0" = callPackage + "microlens" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "microlens"; version = "0.4.5.0"; sha256 = "93cbdb35aa3a653aaee6ec39f895a5c12a663adc120ecb4978b31b034fd69e19"; libraryHaskellDepends = [ base ]; + doHaddock = false; homepage = "http://github.com/aelve/microlens"; description = "A tiny lens library with no dependencies. If you're writing an app, you probably want microlens-platform, not this."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "microlens-aeson_2_1_0" = callPackage @@ -160552,7 +160975,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microlens-ghc" = callPackage + "microlens-ghc_0_4_4_0" = callPackage ({ mkDerivation, array, base, bytestring, containers, microlens , transformers }: @@ -160563,12 +160986,14 @@ self: { libraryHaskellDepends = [ array base bytestring containers microlens transformers ]; + jailbreak = true; homepage = "http://github.com/aelve/microlens"; description = "microlens + array, bytestring, containers, transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microlens-ghc_0_4_5_0" = callPackage + "microlens-ghc" = callPackage ({ mkDerivation, array, base, bytestring, containers, microlens , transformers }: @@ -160579,11 +161004,9 @@ self: { libraryHaskellDepends = [ array base bytestring containers microlens transformers ]; - jailbreak = true; homepage = "http://github.com/aelve/microlens"; description = "microlens + array, bytestring, containers, transformers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "microlens-mtl_0_1_3_1" = callPackage @@ -160657,7 +161080,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microlens-mtl" = callPackage + "microlens-mtl_0_1_7_1" = callPackage ({ mkDerivation, base, microlens, mtl, transformers , transformers-compat }: @@ -160671,9 +161094,10 @@ self: { homepage = "http://github.com/aelve/microlens"; description = "microlens support for Reader/Writer/State from mtl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microlens-mtl_0_1_8_0" = callPackage + "microlens-mtl" = callPackage ({ mkDerivation, base, microlens, mtl, transformers , transformers-compat }: @@ -160687,7 +161111,6 @@ self: { homepage = "http://github.com/aelve/microlens"; description = "microlens support for Reader/Writer/State from mtl"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "microlens-platform_0_1_7_0" = callPackage @@ -160778,6 +161201,26 @@ self: { base hashable microlens microlens-ghc microlens-mtl microlens-th text unordered-containers vector ]; + jailbreak = true; + homepage = "http://github.com/aelve/microlens"; + description = "Feature-complete microlens"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "microlens-platform_0_3_1_1" = callPackage + ({ mkDerivation, base, hashable, microlens, microlens-ghc + , microlens-mtl, microlens-th, text, unordered-containers, vector + }: + mkDerivation { + pname = "microlens-platform"; + version = "0.3.1.1"; + sha256 = "d8588d11159c4400cfffda7979a3beb9b259740e0ce40580183a825eab724b27"; + libraryHaskellDepends = [ + base hashable microlens microlens-ghc microlens-mtl microlens-th + text unordered-containers vector + ]; + jailbreak = true; homepage = "http://github.com/aelve/microlens"; description = "Feature-complete microlens"; license = stdenv.lib.licenses.bsd3; @@ -160785,23 +161228,6 @@ self: { }) {}; "microlens-platform" = callPackage - ({ mkDerivation, base, hashable, microlens, microlens-ghc - , microlens-mtl, microlens-th, text, unordered-containers, vector - }: - mkDerivation { - pname = "microlens-platform"; - version = "0.3.1.1"; - sha256 = "d8588d11159c4400cfffda7979a3beb9b259740e0ce40580183a825eab724b27"; - libraryHaskellDepends = [ - base hashable microlens microlens-ghc microlens-mtl microlens-th - text unordered-containers vector - ]; - homepage = "http://github.com/aelve/microlens"; - description = "Feature-complete microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "microlens-platform_0_3_2_0" = callPackage ({ mkDerivation, base, hashable, microlens, microlens-ghc , microlens-mtl, microlens-th, text, unordered-containers, vector }: @@ -160813,11 +161239,9 @@ self: { base hashable microlens microlens-ghc microlens-mtl microlens-th text unordered-containers vector ]; - jailbreak = true; homepage = "http://github.com/aelve/microlens"; description = "Feature-complete microlens"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "microlens-th_0_2_1_0" = callPackage @@ -160932,6 +161356,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "micrologger" = callPackage + ({ mkDerivation, base, text, text-format, time, transformers }: + mkDerivation { + pname = "micrologger"; + version = "0.2.0.1"; + sha256 = "4778a90b7953ddde7391304c8f87b9cbe3f3657fb6284a5890a42681db7ef469"; + libraryHaskellDepends = [ + base text text-format time transformers + ]; + jailbreak = true; + homepage = "https://github.com/savannidgerinel/micrologger#readme"; + description = "A super simple logging module. Only for use for very simple projects."; + license = stdenv.lib.licenses.bsd3; + }) {}; + "microtimer" = callPackage ({ mkDerivation, base, time }: mkDerivation { @@ -161129,12 +161568,13 @@ self: { , directory, filepath, hspec, http-client, http-date, http-types , io-choice, network, old-locale, parsec, resourcet , streaming-commons, time, transformers, unix, unix-time - , unordered-containers, wai, wai-app-file-cgi, wai-logger, warp + , unordered-containers, wai, wai-app-file-cgi, wai-http2-extra + , wai-logger, warp }: mkDerivation { pname = "mighttpd2"; - version = "3.3.1"; - sha256 = "24d177cd77b9005901ab6c8aee0f3f0c4e286a9247561665b1d0b2fa8f0e84e5"; + version = "3.3.2"; + sha256 = "3d9dc5ef52d5b62cdbccb234ce29edc1a6c37184333715b88ee152770135a47e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -161146,7 +161586,8 @@ self: { executableHaskellDepends = [ base bytestring conduit-extra directory filepath http-client http-date http-types network old-locale streaming-commons time - transformers unix wai wai-app-file-cgi wai-logger warp + transformers unix wai wai-app-file-cgi wai-http2-extra wai-logger + warp ]; testHaskellDepends = [ base hspec http-client ]; homepage = "http://www.mew.org/~kazu/proj/mighttpd/"; @@ -161792,6 +162233,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "minlen" = callPackage + ({ mkDerivation, base, mono-traversable, semigroups, transformers + }: + mkDerivation { + pname = "minlen"; + version = "0.1.0.0"; + sha256 = "6790c5840f21fa85fbb7d416d37f32b740f1735fcda3772e96d7e7083c26d9e3"; + libraryHaskellDepends = [ + base mono-traversable semigroups transformers + ]; + homepage = "https://github.com/snoyberg/mono-traversable#readme"; + description = "Express the minimum length of a container in its type"; + license = stdenv.lib.licenses.mit; + }) {}; + "minst-idx" = callPackage ({ mkDerivation, base, binary, bytestring, directory, hspec, vector }: @@ -162866,8 +163322,8 @@ self: { pname = "monad-http"; version = "0.1.0.0"; sha256 = "a333b087835aa4902d0814e76fe4f32a523092fd7b13526aad415160a8317192"; - revision = "2"; - editedCabalFile = "7f2d5927cf21949017fce8d2c46c3f768e1be144e57ae4c845b409707d11313a"; + revision = "3"; + editedCabalFile = "7d244f8a4ef132e7af6de7d70223548c34b99805e8e45edad6ab091a1e664ff6"; libraryHaskellDepends = [ base base-compat bytestring exceptions http-client http-client-tls http-types monad-logger monadcryptorandom MonadRandom mtl text @@ -163223,7 +163679,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monad-logger" = callPackage + "monad-logger_0_3_18" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, conduit , conduit-extra, exceptions, fast-logger, lifted-base , monad-control, monad-loops, mtl, resourcet, stm, stm-chans @@ -163243,6 +163699,29 @@ self: { homepage = "https://github.com/kazu-yamamoto/logger"; description = "A class of monads which can log messages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-logger" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring, conduit + , conduit-extra, exceptions, fast-logger, lifted-base + , monad-control, monad-loops, mtl, resourcet, stm, stm-chans + , template-haskell, text, transformers, transformers-base + , transformers-compat + }: + mkDerivation { + pname = "monad-logger"; + version = "0.3.19"; + sha256 = "a7b74d8df0db08e3ab231cba649febac0599b4b6b6bbe03828914669d1b085f0"; + libraryHaskellDepends = [ + base blaze-builder bytestring conduit conduit-extra exceptions + fast-logger lifted-base monad-control monad-loops mtl resourcet stm + stm-chans template-haskell text transformers transformers-base + transformers-compat + ]; + homepage = "https://github.com/kazu-yamamoto/logger"; + description = "A class of monads which can log messages"; + license = stdenv.lib.licenses.mit; }) {}; "monad-logger-json" = callPackage @@ -164832,7 +165311,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mono-traversable" = callPackage + "mono-traversable_0_10_2" = callPackage ({ mkDerivation, base, bytestring, comonad, containers, dlist , dlist-instances, foldl, hashable, hspec, HUnit, QuickCheck , semigroupoids, semigroups, split, text, transformers @@ -164854,6 +165333,47 @@ self: { homepage = "https://github.com/snoyberg/mono-traversable"; description = "Type classes for mapping, folding, and traversing monomorphic containers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mono-traversable" = callPackage + ({ mkDerivation, base, bytestring, containers, foldl, hashable + , hspec, HUnit, QuickCheck, semigroups, split, text, transformers + , unordered-containers, vector, vector-algorithms + }: + mkDerivation { + pname = "mono-traversable"; + version = "1.0.0"; + sha256 = "53ba4d590601f8b1ab376b9eb4b72e451ef131860022f91466b04610ec82e1c8"; + libraryHaskellDepends = [ + base bytestring containers hashable split text transformers + unordered-containers vector vector-algorithms + ]; + testHaskellDepends = [ + base bytestring containers foldl hspec HUnit QuickCheck semigroups + text transformers unordered-containers vector + ]; + homepage = "https://github.com/snoyberg/mono-traversable"; + description = "Type classes for mapping, folding, and traversing monomorphic containers"; + license = stdenv.lib.licenses.mit; + }) {}; + + "mono-traversable-instances" = callPackage + ({ mkDerivation, base, comonad, containers, dlist, dlist-instances + , mono-traversable, semigroupoids, semigroups, transformers + , vector-instances + }: + mkDerivation { + pname = "mono-traversable-instances"; + version = "0.1.0.0"; + sha256 = "b5ff2b8bcebe31ffcc652a8dd3adde6aa7cd7f27a1cf6d058d4c658b370c087e"; + libraryHaskellDepends = [ + base comonad containers dlist dlist-instances mono-traversable + semigroupoids semigroups transformers vector-instances + ]; + homepage = "https://github.com/snoyberg/mono-traversable#readme"; + description = "Extra typeclass instances for mono-traversable"; + license = stdenv.lib.licenses.mit; }) {}; "monoid-absorbing" = callPackage @@ -165191,7 +165711,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monoidal-containers" = callPackage + "monoidal-containers_0_1_2_5" = callPackage ({ mkDerivation, base, containers, deepseq, hashable, lens, newtype , unordered-containers }: @@ -165205,6 +165725,23 @@ self: { homepage = "http://github.com/bgamari/monoidal-containers"; description = "Containers with monoidal accumulation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monoidal-containers" = callPackage + ({ mkDerivation, base, containers, deepseq, hashable, lens, newtype + , unordered-containers + }: + mkDerivation { + pname = "monoidal-containers"; + version = "0.2.0.0"; + sha256 = "328fad49563d9793e786107361216bf346e8ea9922158dd48258dbcd5c4bb48d"; + libraryHaskellDepends = [ + base containers deepseq hashable lens newtype unordered-containers + ]; + homepage = "http://github.com/bgamari/monoidal-containers"; + description = "Containers with monoidal accumulation"; + license = stdenv.lib.licenses.bsd3; }) {}; "monoidplus" = callPackage @@ -167288,7 +167825,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mutable-containers" = callPackage + "mutable-containers_0_3_2_1" = callPackage ({ mkDerivation, base, containers, ghc-prim, hspec , mono-traversable, primitive, QuickCheck, vector }: @@ -167307,6 +167844,26 @@ self: { homepage = "https://github.com/fpco/mutable-containers"; description = "Abstactions and concrete implementations of mutable containers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mutable-containers" = callPackage + ({ mkDerivation, base, containers, ghc-prim, hspec + , mono-traversable, primitive, QuickCheck, vector + }: + mkDerivation { + pname = "mutable-containers"; + version = "0.3.3"; + sha256 = "7a7a39cbb16978dd1607a3977d7a1e5d8ecda7a528845d6983b5b97c49517ceb"; + libraryHaskellDepends = [ + base containers ghc-prim mono-traversable primitive vector + ]; + testHaskellDepends = [ + base containers hspec primitive QuickCheck vector + ]; + homepage = "https://github.com/snoyberg/mono-traversable"; + description = "Abstactions and concrete implementations of mutable containers"; + license = stdenv.lib.licenses.mit; }) {}; "mutable-iter" = callPackage @@ -170425,8 +170982,8 @@ self: { pname = "network-transport"; version = "0.4.3.1"; sha256 = "77fd80f672d6cabed4b60cc728f89543500080203cd91b76e07f814baabbd836"; - revision = "1"; - editedCabalFile = "0355f57fcc68a71ac6819a4d091466b39eb247a172ee0b1d8996927c68ca6fa2"; + revision = "2"; + editedCabalFile = "dde49a2fc6108974aeebb8973183457d2aa97f50ff9e0b23a0e463e4820050c1"; libraryHaskellDepends = [ base binary bytestring deepseq hashable transformers ]; @@ -170445,6 +171002,8 @@ self: { pname = "network-transport"; version = "0.4.4.0"; sha256 = "8e11bc9bbc3b1dd6929dfaf1140dc605f6e72c28b97bd60a2c036ab6aae67ed8"; + revision = "1"; + editedCabalFile = "4f11f919f46725881274a02cab5d4c586fa85a7059cc1a4d6433153bbac501bf"; libraryHaskellDepends = [ base binary bytestring deepseq hashable transformers ]; @@ -172584,6 +173143,31 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "octane_0_13_1" = callPackage + ({ mkDerivation, aeson, base, bimap, binary, binary-bits + , bytestring, containers, data-binary-ieee754, deepseq, doctest + , file-embed, http-client, http-client-tls, regex-compat, tasty + , tasty-hspec, text, unordered-containers, vector + }: + mkDerivation { + pname = "octane"; + version = "0.13.1"; + sha256 = "77db47b1c983531846953baa2a720ed38bfcb53c2ad5031a8dbb94cd440c62ac"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bimap binary binary-bits bytestring containers + data-binary-ieee754 deepseq file-embed http-client http-client-tls + regex-compat text unordered-containers vector + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base doctest tasty tasty-hspec ]; + homepage = "https://github.com/tfausak/octane#readme"; + description = "Parse Rocket League replays"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "octohat" = callPackage ({ mkDerivation, aeson, base, base-compat, base16-bytestring , base64-bytestring, bytestring, containers, cryptohash, dotenv @@ -174116,8 +174700,8 @@ self: { ({ mkDerivation, base, mtl }: mkDerivation { pname = "operational-alacarte"; - version = "0.2"; - sha256 = "c42e3e6c4528c0a185a658665fc1033c8f3dd2cd78035f50fc51ba09497da903"; + version = "0.3"; + sha256 = "c9e6ebe251d0854ed71fcf10ea54af2489f6819e180c55d6f15cc1fe3cb5dfcc"; libraryHaskellDepends = [ base mtl ]; testHaskellDepends = [ base ]; homepage = "https://github.com/emilaxelsson/operational-alacarte"; @@ -182673,6 +183257,8 @@ self: { pname = "pipes"; version = "4.2.0"; sha256 = "1e407197e94c3c8642fd2c7b4f8e5a3e537844dff2780c396464a47ae0ec0124"; + revision = "1"; + editedCabalFile = "1ce0aac0a280be337215bcf2a8b73b081a948bfb93e24045a7e3a3c3e6adfad0"; libraryHaskellDepends = [ base mmorph mtl transformers ]; testHaskellDepends = [ base mtl QuickCheck test-framework test-framework-quickcheck2 @@ -183391,7 +183977,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes-extras" = callPackage + "pipes-extras_1_0_4" = callPackage ({ mkDerivation, base, foldl, HUnit, pipes, test-framework , test-framework-hunit, transformers }: @@ -183406,6 +183992,23 @@ self: { jailbreak = true; description = "Extra utilities for pipes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-extras" = callPackage + ({ mkDerivation, base, foldl, HUnit, pipes, test-framework + , test-framework-hunit, transformers + }: + mkDerivation { + pname = "pipes-extras"; + version = "1.0.5"; + sha256 = "5250cb5da34d3d880e129e6294c19d2fab6747e9dab3446d93a01b579a0c78aa"; + libraryHaskellDepends = [ base foldl pipes transformers ]; + testHaskellDepends = [ + base HUnit pipes test-framework test-framework-hunit transformers + ]; + description = "Extra utilities for pipes"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-fastx" = callPackage @@ -183878,6 +184481,8 @@ self: { pname = "pipes-safe"; version = "2.2.3"; sha256 = "d17b8169e2cee683953b020894c4d34fbb1babe063e4309169bef1a90d1e99a7"; + revision = "1"; + editedCabalFile = "fa46870055eb01b4247d207e6f24cd319071b827aa26c3599d3208cd523a8a72"; libraryHaskellDepends = [ base containers exceptions monad-control mtl pipes transformers transformers-base @@ -183896,6 +184501,8 @@ self: { pname = "pipes-safe"; version = "2.2.4"; sha256 = "502dca5ab38596c70917906ed979f917db52ed91b938d52d96dcb7c56735486e"; + revision = "1"; + editedCabalFile = "c91c8835d9ed03ad82795b877f080a06ed43557bacf5bce90121ca0e6d58e873"; libraryHaskellDepends = [ base containers exceptions monad-control mtl pipes transformers transformers-base @@ -184848,6 +185455,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "point-octree" = callPackage + ({ mkDerivation, AC-Vector, base, hspec, markdown-unlit, QuickCheck + , random, random-shuffle + }: + mkDerivation { + pname = "point-octree"; + version = "0.5.5.3"; + sha256 = "15fc7047520cd25a119029057f467a3956641b76978041afb7470ed638750552"; + libraryHaskellDepends = [ AC-Vector base QuickCheck ]; + testHaskellDepends = [ + AC-Vector base hspec markdown-unlit QuickCheck random + random-shuffle + ]; + homepage = "https://github.com/mlitchard/point-octree"; + description = "Point octree, with bounding boxes"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "pointed_4_1" = callPackage ({ mkDerivation, base, comonad, containers, data-default-class , semigroupoids, semigroups, stm, tagged, transformers @@ -186248,6 +186873,8 @@ self: { pname = "postgresql-binary"; version = "0.9"; sha256 = "c90e1d73836450bece04672ee9a8ac0232aa431779498e1d554705382bc40b6d"; + revision = "1"; + editedCabalFile = "f2003b0bacdc2f8dc3e1e9f7a019df65f820c73e707f05e373f1ebdadc2d6019"; libraryHaskellDepends = [ aeson base base-prelude binary-parser bytestring foldl loch-th placeholders scientific text time transformers uuid vector @@ -189823,7 +190450,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "protolude" = callPackage + "protolude_0_1_5" = callPackage ({ mkDerivation, async, base, bytestring, containers, deepseq , ghc-prim, mtl, safe, stm, string-conv, text, transformers }: @@ -189838,9 +190465,10 @@ self: { homepage = "https://github.com/sdiehl/protolude"; description = "A sensible set of defaults for writing custom Preludes"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "protolude_0_1_6" = callPackage + "protolude" = callPackage ({ mkDerivation, async, base, bytestring, containers, deepseq , ghc-prim, mtl, safe, stm, text, transformers }: @@ -189855,7 +190483,6 @@ self: { homepage = "https://github.com/sdiehl/protolude"; description = "A sensible set of defaults for writing custom Preludes"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proton-haskell" = callPackage @@ -190183,19 +190810,6 @@ self: { }) {}; "publicsuffix" = callPackage - ({ mkDerivation, base, filepath, hspec, template-haskell }: - mkDerivation { - pname = "publicsuffix"; - version = "0.20160526"; - sha256 = "524046d9b73e68fa8f1b3a928317997f4c9e50d757f64b10dd4293ff7791c4da"; - libraryHaskellDepends = [ base filepath template-haskell ]; - testHaskellDepends = [ base hspec ]; - homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; - description = "The publicsuffix list exposed as proper Haskell types"; - license = stdenv.lib.licenses.mit; - }) {}; - - "publicsuffix_0_20160701" = callPackage ({ mkDerivation, base, filepath, hspec, template-haskell }: mkDerivation { pname = "publicsuffix"; @@ -190206,7 +190820,6 @@ self: { homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; description = "The publicsuffix list exposed as proper Haskell types"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "publicsuffixlist" = callPackage @@ -191693,6 +192306,29 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "quantum-random_0_6_1" = callPackage + ({ mkDerivation, aeson, ansi-terminal, ansigraph, base, bytestring + , directory, haskeline, hspec, http-conduit, mtl, QuickCheck + , regex-posix, terminal-size, text + }: + mkDerivation { + pname = "quantum-random"; + version = "0.6.1"; + sha256 = "ebaeac863914541fd39d82073ce2223fe4583faa046bafb8632162d3b8790d2f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson ansi-terminal ansigraph base bytestring directory + http-conduit regex-posix terminal-size text + ]; + executableHaskellDepends = [ base haskeline mtl ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "http://github.com/BlackBrane/quantum-random/"; + description = "Retrieve, store and manage real quantum random data"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "qudb" = callPackage ({ mkDerivation, alex, array, base, bytestring, directory, happy , mtl, snappy @@ -193768,8 +194404,9 @@ self: { pname = "rawstring-qm"; version = "0.2.2.2"; sha256 = "e62f4f9bbb7e67b2cf1bf39e1765cce6ede6b9669ed17447e7531364b5307a40"; + revision = "1"; + editedCabalFile = "d856c4c9407a2bf37aa5c129a34109bdbeec1cecbdcd91f84be9efcb972ab954"; libraryHaskellDepends = [ base bytestring template-haskell text ]; - jailbreak = true; homepage = "https://github.com/tolysz/rawstring-qm"; description = "Simple raw string quotation and dictionary interpolation"; license = stdenv.lib.licenses.bsd3; @@ -198371,6 +199008,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "rest-client_0_5_1_1" = callPackage + ({ mkDerivation, aeson-utils, base, bytestring, case-insensitive + , data-default, exceptions, http-client, http-conduit, http-types + , hxt, hxt-pickle-utils, monad-control, mtl, resourcet, rest-types + , tostring, transformers, transformers-base, transformers-compat + , uri-encode, utf8-string + }: + mkDerivation { + pname = "rest-client"; + version = "0.5.1.1"; + sha256 = "5da423c9f2c87b9b9797ea331c5f248408e5f863d460dfd94b3408249729f663"; + libraryHaskellDepends = [ + aeson-utils base bytestring case-insensitive data-default + exceptions http-client http-conduit http-types hxt hxt-pickle-utils + monad-control mtl resourcet rest-types tostring transformers + transformers-base transformers-compat uri-encode utf8-string + ]; + description = "Utility library for use in generated API client libraries"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "rest-core_0_33_1_2" = callPackage ({ mkDerivation, aeson, aeson-utils, base, bytestring, either , errors, fclabels, HUnit, hxt, hxt-pickle-utils, json-schema, mtl @@ -201810,14 +202469,16 @@ self: { }) {}; "safe-exceptions" = callPackage - ({ mkDerivation, base, exceptions, hspec, transformers, void }: + ({ mkDerivation, base, deepseq, exceptions, hspec, transformers + , void + }: mkDerivation { pname = "safe-exceptions"; - version = "0.1.0.0"; - sha256 = "822a14dde4573c7f08a40ec992eb49cb0589084868061fc7ddabed6cd412b27e"; - libraryHaskellDepends = [ base exceptions transformers ]; + version = "0.1.1.0"; + sha256 = "88d978f360eef53b553d7f4520598498187f02ae843517bd1d8eac95b1e972c2"; + libraryHaskellDepends = [ base deepseq exceptions transformers ]; testHaskellDepends = [ base hspec void ]; - homepage = "https://github.com/githubuser/safe-exceptions#readme"; + homepage = "https://github.com/fpco/safe-exceptions#readme"; description = "Safe, consistent, and easy exception handling"; license = stdenv.lib.licenses.mit; }) {}; @@ -203697,7 +204358,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "scientific" = callPackage + "scientific_0_3_4_7" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq , ghc-prim, hashable, integer-gmp, QuickCheck, smallcheck, tasty , tasty-ant-xml, tasty-hunit, tasty-quickcheck, tasty-smallcheck @@ -203718,9 +204379,10 @@ self: { homepage = "https://github.com/basvandijk/scientific"; description = "Numbers represented using scientific notation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "scientific_0_3_4_8" = callPackage + "scientific" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq , ghc-prim, hashable, integer-gmp, QuickCheck, smallcheck, tasty , tasty-ant-xml, tasty-hunit, tasty-quickcheck, tasty-smallcheck @@ -203741,7 +204403,6 @@ self: { homepage = "https://github.com/basvandijk/scientific"; description = "Numbers represented using scientific notation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scion" = callPackage @@ -206441,6 +207102,8 @@ self: { pname = "servant-client"; version = "0.2.2"; sha256 = "b95c4b1f7f97395be4c3d1cea440ce4ece03d04cdb777559e34a1116e953262d"; + revision = "1"; + editedCabalFile = "ea9c42cd7948d837dc33e6956e00c574be5de3092bc8103e62536d7b83d5cf87"; libraryHaskellDepends = [ aeson attoparsec base bytestring either exceptions http-client http-client-tls http-types network-uri safe servant @@ -206468,6 +207131,8 @@ self: { pname = "servant-client"; version = "0.4.4"; sha256 = "7f1b8835bddbe8b1eafa6dee9dc780561ad851e9b68e8a5c16ea45b32ee2aa54"; + revision = "1"; + editedCabalFile = "030e62bef12683b2a4353585b0d347543f98787b28cf75d3289e9b632d801c1d"; libraryHaskellDepends = [ aeson attoparsec base bytestring either exceptions http-client http-client-tls http-media http-types network-uri safe servant @@ -206496,6 +207161,8 @@ self: { pname = "servant-client"; version = "0.4.4.2"; sha256 = "d5b95b943215aa227f390c284f84043d7c0db2531416ff44511e0d209bc498c3"; + revision = "1"; + editedCabalFile = "2c68e5a995d6a660e008c6dc3cc368b9756dcf9c3c0e6f7eb1e329895e0b02e7"; libraryHaskellDepends = [ aeson attoparsec base bytestring either exceptions http-client http-client-tls http-media http-types network-uri safe servant @@ -206524,6 +207191,8 @@ self: { pname = "servant-client"; version = "0.4.4.4"; sha256 = "650e5aa48c060238a25328e9b9193d20102010359946f7b1979ef328eb1c4134"; + revision = "1"; + editedCabalFile = "c0f54387f539f000aa6ec79d104730e3faafbef9405a0387e0deebea946f0838"; libraryHaskellDepends = [ aeson attoparsec base bytestring either exceptions http-client http-client-tls http-media http-types network-uri safe servant @@ -206552,6 +207221,8 @@ self: { pname = "servant-client"; version = "0.4.4.5"; sha256 = "7ca47d0bb95268222fe19d34b31acf501ea89d7a9a4ce77a3ebc0cd18386b953"; + revision = "1"; + editedCabalFile = "11d13bb0fff423308b84e22301aa079cd53a26c5e438e805d9acd70d9ee2def9"; libraryHaskellDepends = [ aeson attoparsec base bytestring either exceptions http-client http-client-tls http-media http-types network-uri safe servant @@ -206580,6 +207251,8 @@ self: { pname = "servant-client"; version = "0.4.4.6"; sha256 = "c4604c462f44963fce5ac32c330281880351ea39f5a206876af95d9945408383"; + revision = "1"; + editedCabalFile = "12aa7b0811c7835e3ccd3724a01b381f2d02c20117f6c5f9d5cf27d6958acc23"; libraryHaskellDepends = [ aeson attoparsec base bytestring either exceptions http-client http-client-tls http-media http-types network-uri safe servant @@ -206608,6 +207281,8 @@ self: { pname = "servant-client"; version = "0.4.4.7"; sha256 = "01fcdbbca231b4f99c80f47b6fc025f7785394358bde37eddb744b5e8e7bcba8"; + revision = "1"; + editedCabalFile = "df6b6319ea667c0d47dfd0d8efff7ff42208f924cd7ba893d3fb609977f91a4d"; libraryHaskellDepends = [ aeson attoparsec base bytestring either exceptions http-client http-client-tls http-media http-types network-uri safe servant @@ -206637,6 +207312,8 @@ self: { pname = "servant-client"; version = "0.7.1"; sha256 = "1aecf3d0d573900bc0b20e3ecadd0561d8cbaaf461efb40b213341d36396661d"; + revision = "1"; + editedCabalFile = "2e5c2301bb98e655edb4e6be3a9b9a814330fcd559faba130a2798bf229800c3"; libraryHaskellDepends = [ aeson attoparsec base base64-bytestring bytestring exceptions http-api-data http-client http-client-tls http-media http-types @@ -207890,6 +208567,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "server-generic" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-types, mtl, text + , void, wai, warp + }: + mkDerivation { + pname = "server-generic"; + version = "1.0.0"; + sha256 = "c8e5dec28ecd9cd91bbd7a52621b482ab58f903381e4dd29ef8eb88f8557ced9"; + libraryHaskellDepends = [ + aeson base bytestring http-types mtl text void wai warp + ]; + homepage = "https://github.com/Gabriel439/Haskell-Server-Generic-Library"; + description = "Auto-generate a server for your datatype"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "serversession" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, bytestring , containers, data-default, hashable, hspec, nonce, path-pieces @@ -211864,10 +212557,9 @@ self: { ({ mkDerivation, base, singletons }: mkDerivation { pname = "singleton-nats"; - version = "0.4.0.1"; - sha256 = "4914fba386076d7581dbf9911a644086662f578e421618bdaded4e3f36785e4d"; + version = "0.4.0.2"; + sha256 = "5cc7c7d158900bb7fda8e52865e88e0d8c88cf05458ae51f138aca998f6f32db"; libraryHaskellDepends = [ base singletons ]; - jailbreak = true; homepage = "https://github.com/AndrasKovacs/singleton-nats"; description = "Unary natural numbers relying on the singletons infrastructure"; license = stdenv.lib.licenses.bsd3; @@ -212914,13 +213606,12 @@ self: { }: mkDerivation { pname = "smallcheck-series"; - version = "0.5.1"; - sha256 = "8bee99c89c9437bbaf7f5c203957ed73b0d2e419956f7e509ed5bc8a19728cdd"; + version = "0.6"; + sha256 = "c11563b920463c09a6f30f287b23671ed3e4abb4c041406106d3e16b5b473852"; libraryHaskellDepends = [ base bytestring containers logict smallcheck text transformers ]; testHaskellDepends = [ base doctest Glob ]; - jailbreak = true; homepage = "https://github.com/jdnavarro/smallcheck-series"; description = "Extra SmallCheck series and utilities"; license = stdenv.lib.licenses.bsd3; @@ -215689,6 +216380,23 @@ self: { license = stdenv.lib.licenses.lgpl21; }) {}; + "solga" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, http-types + , resourcet, text, wai, wai-extra + }: + mkDerivation { + pname = "solga"; + version = "0.1.0.0"; + sha256 = "08eaf70e9e6c36c3b42dd60809d326e714040adfba75e43db8926562669bfd21"; + libraryHaskellDepends = [ + aeson base bytestring containers http-types resourcet text wai + wai-extra + ]; + homepage = "https://github.com/chpatrick/solga"; + description = "Simple typesafe web routing"; + license = stdenv.lib.licenses.mit; + }) {}; + "solr" = callPackage ({ mkDerivation, base, base-prelude, bytestring , bytestring-tree-builder, case-insensitive, contravariant @@ -225445,6 +226153,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "systemstats" = callPackage + ({ mkDerivation, base, micrologger, optparse-applicative, statgrab + , text, text-format, transformers + }: + mkDerivation { + pname = "systemstats"; + version = "0.1.0.0"; + sha256 = "3f1ec1995f4570dad3cc22dd062655b3a672bbddf6577f21172fe2eb46c48f14"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base micrologger optparse-applicative statgrab text text-format + transformers + ]; + jailbreak = true; + homepage = "https://github.com/githubuser/systemlog#readme"; + description = "An application that regularly logs system stats for later analysis"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "syz" = callPackage ({ mkDerivation, base, syb }: mkDerivation { @@ -229770,6 +230498,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) icu;}; + "text-icu-normalized" = callPackage + ({ mkDerivation, base, base-unicode-symbols, bytestring, lens, text + , text-icu + }: + mkDerivation { + pname = "text-icu-normalized"; + version = "0.1.4.1"; + sha256 = "3ffe3706e994327563568a84e0b41761b235f84ca3b3c307656de406d7b8e2e3"; + libraryHaskellDepends = [ + base base-unicode-symbols bytestring lens text text-icu + ]; + jailbreak = true; + homepage = "https://gitlab.com/theunixman/text-icu-normalized"; + description = "Dealing with Strict Text in NFC normalization"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "text-icu-translit" = callPackage ({ mkDerivation, base, icu, QuickCheck, test-framework , test-framework-quickcheck2, text, text-icu @@ -231011,6 +231756,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "th-lift-instances_0_1_9" = callPackage + ({ mkDerivation, base, bytestring, containers, QuickCheck + , template-haskell, text, th-lift, vector + }: + mkDerivation { + pname = "th-lift-instances"; + version = "0.1.9"; + sha256 = "6c44eb1d62dc1073b8719b21bf36ecf10d6b38fdf371dc855adfeda51367755b"; + libraryHaskellDepends = [ + base bytestring containers template-haskell text th-lift vector + ]; + testHaskellDepends = [ + base bytestring containers QuickCheck template-haskell text vector + ]; + homepage = "http://github.com/bennofs/th-lift-instances/"; + description = "Lift instances for template-haskell for common data types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "th-orphans_0_8_2" = callPackage ({ mkDerivation, base, template-haskell, th-lift, th-reify-many }: mkDerivation { @@ -231129,6 +231894,7 @@ self: { testHaskellDepends = [ base bytestring hspec HUnit QuickCheck template-haskell text ]; + doCheck = false; homepage = "https://github.com/joelteon/th-printf"; description = "Compile-time printf"; license = stdenv.lib.licenses.mit; @@ -234522,8 +235288,8 @@ self: { }: mkDerivation { pname = "transient"; - version = "0.3"; - sha256 = "3bbbef6058242d8b09a759171f0ca98e24a373f833f463bd2a8ed3abc06df280"; + version = "0.4.0"; + sha256 = "74b8895d8193fd5565760a968736e34ecea96dde7d5298dae6776f7dd52aaefc"; libraryHaskellDepends = [ base containers mtl stm time transformers ]; @@ -234531,6 +235297,7 @@ self: { base containers directory filepath HTTP mtl network process random stm transformers ]; + doCheck = false; homepage = "http://www.fpcomplete.com/user/agocorona"; description = "Making composable programs with multithreading, events and distributed computing"; license = stdenv.lib.licenses.mit; @@ -234545,18 +235312,14 @@ self: { }: mkDerivation { pname = "transient-universe"; - version = "0.2"; - sha256 = "266b3dacc641a80fbba748557522e1904b363760cba4857ce1627912ff7865c7"; + version = "0.3"; + sha256 = "8bc952a09ac7f53a3f5d8b0941f91bef9d32f4c6f395a0ee5b4f030367ac9a56"; libraryHaskellDepends = [ base bytestring case-insensitive containers directory filepath hashable HTTP mtl network network-info network-uri process random stm TCache text time transformers transient vector websockets ]; - testHaskellDepends = [ - base bytestring case-insensitive containers directory filepath - hashable HTTP mtl network network-info network-uri process random - stm TCache time transformers vector websockets - ]; + doHaddock = false; homepage = "http://www.fpcomplete.com/user/agocorona"; description = "remote execution and map-reduce: distributed computing for transient"; license = stdenv.lib.licenses.gpl3; @@ -234890,7 +235653,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "trifecta" = callPackage + "trifecta_1_5_2" = callPackage ({ mkDerivation, ansi-terminal, ansi-wl-pprint, array, base , blaze-builder, blaze-html, blaze-markup, bytestring, charset , comonad, containers, deepseq, directory, doctest, filepath @@ -234915,6 +235678,33 @@ self: { homepage = "http://github.com/ekmett/trifecta/"; description = "A modern parser combinator library with convenient diagnostics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "trifecta" = callPackage + ({ mkDerivation, ansi-terminal, ansi-wl-pprint, array, base + , blaze-builder, blaze-html, blaze-markup, bytestring, charset + , comonad, containers, deepseq, directory, doctest, filepath + , fingertree, ghc-prim, hashable, lens, mtl, parsers, profunctors + , QuickCheck, reducers, semigroups, transformers + , unordered-containers, utf8-string + }: + mkDerivation { + pname = "trifecta"; + version = "1.6"; + sha256 = "b302a69295fcb70f645e48b5005ded4f62a05ae11e4470f20ff4cc136ada7065"; + libraryHaskellDepends = [ + ansi-terminal ansi-wl-pprint array base blaze-builder blaze-html + blaze-markup bytestring charset comonad containers deepseq + fingertree ghc-prim hashable lens mtl parsers profunctors reducers + semigroups transformers unordered-containers utf8-string + ]; + testHaskellDepends = [ + base directory doctest filepath parsers QuickCheck + ]; + homepage = "http://github.com/ekmett/trifecta/"; + description = "A modern parser combinator library with convenient diagnostics"; + license = stdenv.lib.licenses.bsd3; }) {}; "trimpolya" = callPackage @@ -242911,6 +243701,7 @@ self: { testHaskellDepends = [ base bytestring cereal hex protobuf tasty tasty-hunit text vector ]; + doCheck = false; homepage = "https://github.com/fosskers/vectortiles"; description = "GIS Vector Tiles, as defined by Mapbox"; license = stdenv.lib.licenses.asl20; @@ -245290,6 +246081,7 @@ self: { base blaze-builder bytestring case-insensitive cookie fast-logger hspec http-types HUnit resourcet text time transformers wai zlib ]; + jailbreak = true; homepage = "http://github.com/yesodweb/wai"; description = "Provides some basic WAI handlers and middleware"; license = stdenv.lib.licenses.mit; @@ -245320,6 +246112,7 @@ self: { base blaze-builder bytestring case-insensitive cookie fast-logger hspec http-types HUnit resourcet text time transformers wai zlib ]; + jailbreak = true; homepage = "http://github.com/yesodweb/wai"; description = "Provides some basic WAI handlers and middleware"; license = stdenv.lib.licenses.mit; @@ -245350,6 +246143,7 @@ self: { base blaze-builder bytestring case-insensitive cookie fast-logger hspec http-types HUnit resourcet text time transformers wai zlib ]; + jailbreak = true; homepage = "http://github.com/yesodweb/wai"; description = "Provides some basic WAI handlers and middleware"; license = stdenv.lib.licenses.mit; @@ -245380,6 +246174,7 @@ self: { base blaze-builder bytestring case-insensitive cookie fast-logger hspec http-types HUnit resourcet text time transformers wai zlib ]; + jailbreak = true; homepage = "http://github.com/yesodweb/wai"; description = "Provides some basic WAI handlers and middleware"; license = stdenv.lib.licenses.mit; @@ -245412,6 +246207,7 @@ self: { base blaze-builder bytestring case-insensitive cookie fast-logger hspec http-types HUnit resourcet text time transformers wai zlib ]; + jailbreak = true; homepage = "http://github.com/yesodweb/wai"; description = "Provides some basic WAI handlers and middleware"; license = stdenv.lib.licenses.mit; @@ -245442,6 +246238,38 @@ self: { base blaze-builder bytestring case-insensitive cookie fast-logger hspec http-types HUnit resourcet text time transformers wai zlib ]; + jailbreak = true; + homepage = "http://github.com/yesodweb/wai"; + description = "Provides some basic WAI handlers and middleware"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-extra_3_0_15_2" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring + , blaze-builder, bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, fast-logger, hspec + , http-types, HUnit, iproute, lifted-base, network, old-locale + , resourcet, streaming-commons, stringsearch, text, time + , transformers, unix, unix-compat, vault, void, wai, wai-logger + , word8, zlib + }: + mkDerivation { + pname = "wai-extra"; + version = "3.0.15.2"; + sha256 = "367973347c3cfb4378b4b6c118dc0423779799df01a228fd518899acc4716bf8"; + libraryHaskellDepends = [ + aeson ansi-terminal base base64-bytestring blaze-builder bytestring + case-insensitive containers cookie data-default-class deepseq + directory fast-logger http-types iproute lifted-base network + old-locale resourcet streaming-commons stringsearch text time + transformers unix unix-compat vault void wai wai-logger word8 zlib + ]; + testHaskellDepends = [ + base blaze-builder bytestring case-insensitive cookie fast-logger + hspec http-types HUnit resourcet text time transformers wai zlib + ]; + jailbreak = true; homepage = "http://github.com/yesodweb/wai"; description = "Provides some basic WAI handlers and middleware"; license = stdenv.lib.licenses.mit; @@ -245459,8 +246287,8 @@ self: { }: mkDerivation { pname = "wai-extra"; - version = "3.0.15.2"; - sha256 = "367973347c3cfb4378b4b6c118dc0423779799df01a228fd518899acc4716bf8"; + version = "3.0.15.3"; + sha256 = "e841c5f101b0d436c1e54dd197e1e245b8b5ca4d3db18c48a837db1db3d5c1b3"; libraryHaskellDepends = [ aeson ansi-terminal base base64-bytestring blaze-builder bytestring case-insensitive containers cookie data-default-class deepseq @@ -245736,6 +246564,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "wai-http2-extra" = callPackage + ({ mkDerivation, auto-update, base, bytestring, containers, doctest + , wai, warp, word8 + }: + mkDerivation { + pname = "wai-http2-extra"; + version = "0.0.0"; + sha256 = "594243350fc71df4007c9a7c804dce2cea08349ca316689fe27655b7f0f7d70d"; + libraryHaskellDepends = [ + auto-update base bytestring containers wai warp word8 + ]; + testHaskellDepends = [ base doctest ]; + homepage = "http://github.com/yesodweb/wai"; + description = "WAI utilities for HTTP/2"; + license = stdenv.lib.licenses.mit; + }) {}; + "wai-lens" = callPackage ({ mkDerivation, base, bytestring, http-types, lens, network, text , vault, wai @@ -245855,7 +246700,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-logger" = callPackage + "wai-logger_2_2_7" = callPackage ({ mkDerivation, base, blaze-builder, byteorder, bytestring , case-insensitive, doctest, fast-logger, http-types, network, unix , unix-time, wai @@ -245872,6 +246717,26 @@ self: { doCheck = false; description = "A logging system for WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-logger" = callPackage + ({ mkDerivation, base, blaze-builder, byteorder, bytestring + , case-insensitive, doctest, fast-logger, http-types, network, unix + , unix-time, wai + }: + mkDerivation { + pname = "wai-logger"; + version = "2.3.0"; + sha256 = "90cd993c657e72a0480a988220b288aeb2561efa53d2c8f819197b6de3060bf0"; + libraryHaskellDepends = [ + base blaze-builder byteorder bytestring case-insensitive + fast-logger http-types network unix unix-time wai + ]; + testHaskellDepends = [ base doctest ]; + doCheck = false; + description = "A logging system for WAI"; + license = stdenv.lib.licenses.bsd3; }) {}; "wai-logger-prefork" = callPackage @@ -247052,6 +247917,27 @@ self: { license = "unknown"; }) {}; + "wai-session-mysql" = callPackage + ({ mkDerivation, base, bytestring, cereal, cookie, data-default + , entropy, mysql-simple, resource-pool, text, time, transformers + , wai, wai-session + }: + mkDerivation { + pname = "wai-session-mysql"; + version = "0.2.1.0"; + sha256 = "4b47855ba7f6ed86c0a1a15f4bfc8f5e7b427ef41fcc49ac8fa469b3c1369f07"; + libraryHaskellDepends = [ + base bytestring cereal cookie data-default entropy mysql-simple + resource-pool text time transformers wai wai-session + ]; + testHaskellDepends = [ + base bytestring data-default mysql-simple text wai-session + ]; + homepage = "https://github.com/Lupino/mysql-session#readme"; + description = "MySQL backed Wai session store"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "wai-session-postgresql_0_2_0_3" = callPackage ({ mkDerivation, base, bytestring, cereal, cookie, data-default , entropy, postgresql-simple, resource-pool, text, time @@ -248354,7 +249240,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "warp" = callPackage + "warp_3_2_6" = callPackage ({ mkDerivation, array, async, auto-update, base, blaze-builder , bytestring, bytestring-builder, case-insensitive, containers , directory, doctest, ghc-prim, hashable, hspec, HTTP, http-date @@ -248384,6 +249270,39 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "A fast, light-weight web server for WAI applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "warp" = callPackage + ({ mkDerivation, array, async, auto-update, base, blaze-builder + , bytestring, bytestring-builder, case-insensitive, containers + , directory, doctest, ghc-prim, hashable, hspec, HTTP, http-date + , http-types, http2, HUnit, iproute, lifted-base, network, process + , QuickCheck, silently, simple-sendfile, stm, streaming-commons + , text, time, transformers, unix, unix-compat, vault, wai, word8 + }: + mkDerivation { + pname = "warp"; + version = "3.2.7"; + sha256 = "ca8f59f9467151a453b5eaa6631d6ccb12ffabd4cd074bf32908e780b695f184"; + libraryHaskellDepends = [ + array async auto-update base blaze-builder bytestring + bytestring-builder case-insensitive containers ghc-prim hashable + http-date http-types http2 iproute network simple-sendfile stm + streaming-commons text unix unix-compat vault wai word8 + ]; + testHaskellDepends = [ + array async auto-update base blaze-builder bytestring + bytestring-builder case-insensitive containers directory doctest + ghc-prim hashable hspec HTTP http-date http-types http2 HUnit + iproute lifted-base network process QuickCheck silently + simple-sendfile stm streaming-commons text time transformers unix + unix-compat vault wai word8 + ]; + doCheck = false; + homepage = "http://github.com/yesodweb/wai"; + description = "A fast, light-weight web server for WAI applications"; + license = stdenv.lib.licenses.mit; }) {}; "warp-dynamic" = callPackage @@ -251721,8 +252640,8 @@ self: { pname = "wreq"; version = "0.3.0.1"; sha256 = "842a8539e3670732c7f48fe91429d6e940865fcd17374ad2895b74a751c6578d"; - revision = "1"; - editedCabalFile = "b69dc65ef23cfd21ff24b08c2703871b2acff2d23ebb30ed8cb7519f5e42bcf6"; + revision = "2"; + editedCabalFile = "82b1c481e1c3b2bd2bac7ed8036f15d8056edca8fe20a296c2a7a49003616de3"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring byteable bytestring case-insensitive containers cryptohash exceptions ghc-prim hashable @@ -251760,6 +252679,8 @@ self: { pname = "wreq"; version = "0.4.0.0"; sha256 = "4ae67fcd133a9738f7f73b66c8cc5a6bfc0cbc93e041fc1a43362a3d72557297"; + revision = "1"; + editedCabalFile = "7de6fcc969f667c5e199a094b52f21d2b85935c2622adbd666a2699fb2fd5a81"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring byteable bytestring case-insensitive containers cryptohash exceptions ghc-prim hashable @@ -251797,6 +252718,8 @@ self: { pname = "wreq"; version = "0.4.1.0"; sha256 = "3b8409e2fb7670d7060fdaa780008eeecb08e9b65bdab9d9690d8d26e5cb8e6d"; + revision = "1"; + editedCabalFile = "415dee42256dec3b5dae7c18bd9bf610ebe55c053d371c8afb994c9525fafa36"; libraryHaskellDepends = [ aeson attoparsec authenticate-oauth base base16-bytestring byteable bytestring case-insensitive containers cryptohash exceptions @@ -255372,6 +256295,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "yahoo-finance-api" = callPackage + ({ mkDerivation, aeson, base, doctest, Glob, http-api-data + , http-client, lens, lens-aeson, mtl, servant, servant-client, text + , time, transformers + }: + mkDerivation { + pname = "yahoo-finance-api"; + version = "0.1.0.0"; + sha256 = "d7e8f52d8549fc2084698a520dcb17681e1917c2ca5ca63d3bda67522fdc5182"; + libraryHaskellDepends = [ + aeson base http-api-data http-client lens lens-aeson mtl servant + servant-client text time transformers + ]; + testHaskellDepends = [ base doctest Glob ]; + homepage = "https://github.com/cdepillabout/yahoo-finance-api"; + description = "Read quotes from Yahoo Finance API"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "yahoo-finance-conduit" = callPackage ({ mkDerivation, attoparsec, base, cassava, conduit, lens, mtl , text, vector, wreq @@ -257828,7 +258770,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth-oauth2" = callPackage + "yesod-auth-oauth2_0_1_10" = callPackage ({ mkDerivation, aeson, authenticate, base, bytestring, hoauth2 , hspec, http-client, http-conduit, http-types, lifted-base , network-uri, random, text, transformers, vector, yesod-auth @@ -257847,9 +258789,10 @@ self: { homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; description = "OAuth 2.0 authentication plugins"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth-oauth2_0_2_0" = callPackage + "yesod-auth-oauth2" = callPackage ({ mkDerivation, aeson, authenticate, base, bytestring, hoauth2 , hspec, http-client, http-conduit, http-types, lifted-base , network-uri, random, text, transformers, vector, yesod-auth @@ -257865,10 +258808,10 @@ self: { yesod-auth yesod-core yesod-form ]; testHaskellDepends = [ base hspec ]; + doHaddock = false; homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; description = "OAuth 2.0 authentication plugins"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-pam" = callPackage @@ -260256,6 +261199,7 @@ self: { base classy-prelude containers MissingH monad-control persistent random safe stm uuid yesod-core yesod-form yesod-persistent ]; + jailbreak = true; homepage = "https://github.com/league/yesod-crud"; description = "Generic administrative CRUD operations as a Yesod subsite"; license = stdenv.lib.licenses.bsd3; @@ -262705,7 +263649,7 @@ self: { license = "GPL"; }) {}; - "yi-language" = callPackage + "yi-language_0_2_0" = callPackage ({ mkDerivation, alex, array, base, binary, containers , data-default, filepath, hashable, hspec, lens, oo-prototypes , pointedlist, QuickCheck, regex-base, regex-tdfa, template-haskell @@ -262729,9 +263673,10 @@ self: { homepage = "https://github.com/yi-editor/yi-language"; description = "Collection of language-related Yi libraries"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yi-language_0_2_1" = callPackage + "yi-language" = callPackage ({ mkDerivation, alex, array, base, binary, containers , data-default, filepath, hashable, hspec, microlens-platform , oo-prototypes, pointedlist, QuickCheck, regex-base, regex-tdfa @@ -262755,7 +263700,6 @@ self: { homepage = "https://github.com/yi-editor/yi-language"; description = "Collection of language-related Yi libraries"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yi-monokai" = callPackage @@ -263168,8 +264112,8 @@ self: { ({ mkDerivation, base, containers, hspec, mtl, z3 }: mkDerivation { pname = "z3-encoding"; - version = "0.2.1.1"; - sha256 = "791e07bc4c358223c93d96fd866eb4f22ad2c72f43ea5fda73f8886907b4d4a5"; + version = "0.3.0.0"; + sha256 = "b7e791c8e8f154a1e3f181391bed17114f8c8edceb3ae646ff419b6f65805d7b"; libraryHaskellDepends = [ base containers mtl z3 ]; testHaskellDepends = [ base containers hspec z3 ]; description = "High-level assertion encoding to Z3 solver"; From 6a6b8fa36fa21a8163e47d948ff79c50cbad2a78 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 5 Jul 2016 22:49:26 +0200 Subject: [PATCH 14/79] cabal2nix: update to version 2.0 from Hackage I've realized that publishing updates to Hackage is far easier than publishing updates in Nixpkgs, and since all Hackage updates show up in Nix automatically I've decided to go back to publishing cabal2nix on Hackage again. Unfortunately, this means that I'll have to change the version numbering scheme to comply with the expectations of the Haskell PVP (which is used by Stackage), so the new version 2.0 looks like a downgrade to Nix, which used to have version 20160406. :-( If in doubt, run "nix-env -u --always" to force the update. I am sorry about the inconvenience. --- .../haskell-modules/configuration-common.nix | 3 -- .../tools/haskell/cabal2nix/default.nix | 45 ------------------- pkgs/top-level/all-packages.nix | 14 +++++- 3 files changed, 13 insertions(+), 49 deletions(-) delete mode 100644 pkgs/development/tools/haskell/cabal2nix/default.nix diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 6c6864f0c4a..19a5581480c 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -653,9 +653,6 @@ self: super: { # Test suite won't compile against tasty-hunit 0.9.x. zlib = dontCheck super.zlib; - # Override the obsolete version from Hackage with our more up-to-date copy. - cabal2nix = self.callPackage ../tools/haskell/cabal2nix {}; - # https://github.com/ndmitchell/shake/issues/206 # https://github.com/ndmitchell/shake/issues/267 shake = overrideCabal super.shake (drv: { doCheck = !pkgs.stdenv.isDarwin && false; }); diff --git a/pkgs/development/tools/haskell/cabal2nix/default.nix b/pkgs/development/tools/haskell/cabal2nix/default.nix deleted file mode 100644 index 3e6c9019f6d..00000000000 --- a/pkgs/development/tools/haskell/cabal2nix/default.nix +++ /dev/null @@ -1,45 +0,0 @@ -{ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, Cabal -, containers, deepseq, directory, distribution-nixpkgs, fetchFromGitHub -, filepath, hackage-db, language-nix, lens, monad-par -, monad-par-extras, mtl, optparse-applicative, pretty, process, SHA -, split, stackage-types, stdenv, text, time, transformers -, utf8-string, yaml, makeWrapper, nix-prefetch-scripts -}: -mkDerivation rec { - pname = "cabal2nix"; - version = "20160613-10-g57dddc7"; - src = fetchFromGitHub { - owner = "nixos"; - repo = "cabal2nix"; - rev = "v${version}"; - sha256 = "1nlybd4im80dwq70wqa5k4lji5g353cn6aqiz4v3x4v3fpn2i3qb"; - }; - isExecutable = true; - enableSharedExecutables = false; - libraryHaskellDepends = [ - aeson ansi-wl-pprint base bytestring Cabal containers deepseq - directory distribution-nixpkgs filepath hackage-db language-nix - lens optparse-applicative pretty process SHA split text - transformers yaml - ]; - executableHaskellDepends = [ - aeson ansi-wl-pprint base bytestring Cabal containers deepseq - directory distribution-nixpkgs filepath hackage-db language-nix - lens monad-par monad-par-extras mtl optparse-applicative pretty - process SHA split stackage-types text time transformers utf8-string - yaml - ]; - executableToolDepends = [ makeWrapper ]; - postInstall = '' - exe=$out/libexec/${pname}-${version}/${pname} - install -D $out/bin/${pname} $exe - rm -rf $out/{bin,lib,share} - makeWrapper $exe $out/bin/${pname} --prefix PATH ":" "${nix-prefetch-scripts}/bin" - mkdir -p $out/share/bash-completion/completions - $exe --bash-completion-script $exe >$out/share/bash-completion/completions/${pname} - ''; - homepage = "https://github.com/nixos/cabal2nix#readme"; - description = "Convert Cabal files into Nix build instructions"; - license = stdenv.lib.licenses.bsd3; - maintainers = [stdenv.lib.maintainers.peti]; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b056fa69990..26b292f9374 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -640,7 +640,19 @@ in libtorrentRasterbar = libtorrentRasterbar_1_09; }; - cabal2nix = self.haskellPackages.cabal2nix; + cabal2nix = self.haskell.lib.overrideCabal self.haskellPackages.cabal2nix (drv: { + isLibrary = false; + enableSharedExecutables = false; + executableToolDepends = [ self.makeWrapper ]; + postInstall = '' + exe=$out/libexec/${drv.pname}-${drv.version}/${drv.pname} + install -D $out/bin/${drv.pname} $exe + rm -rf $out/{bin,lib,share} + makeWrapper $exe $out/bin/${drv.pname} --prefix PATH ":" "${self.nix-prefetch-scripts}/bin" + mkdir -p $out/share/bash-completion/completions + $exe --bash-completion-script $exe >$out/share/bash-completion/completions/${drv.pname} + ''; + }); caddy = callPackage ../servers/caddy { }; From aeb516c741a1156a66acafa14322b47c63cfd709 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Tue, 5 Jul 2016 23:40:35 +0200 Subject: [PATCH 15/79] nixos/grub: change state file device separator from ':' to ',' ':' is currently used as separator in /boot/grub/state for the list of devices GRUB should be installed to. The problem is that ':' itself may appear in a device path: /dev/disk/by-id/usb-SanDisk_Cruzer_20043512300546C0B317-0:0 With such a path, NixOS will install GRUB *every* time, because it thinks the configuration differs from the state file (due to the wrong list split). Fix it by using ',' as separator. For existing systems with GRUB installed on multiple devices, this change means that GRUB will be installed one extra time. --- nixos/modules/system/boot/loader/grub/install-grub.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/system/boot/loader/grub/install-grub.pl b/nixos/modules/system/boot/loader/grub/install-grub.pl index b8ef02da4bc..94d87b43606 100644 --- a/nixos/modules/system/boot/loader/grub/install-grub.pl +++ b/nixos/modules/system/boot/loader/grub/install-grub.pl @@ -501,7 +501,7 @@ sub getEfiTarget { my @deviceTargets = getDeviceTargets(); my $efiTarget = getEfiTarget(); my $prevGrubState = readGrubState(); -my @prevDeviceTargets = split/:/, $prevGrubState->devices; +my @prevDeviceTargets = split/,/, $prevGrubState->devices; my $devicesDiffer = scalar (List::Compare->new( '-u', '-a', \@deviceTargets, \@prevDeviceTargets)->get_symmetric_difference()); my $nameDiffer = get("fullName") ne $prevGrubState->name; @@ -549,7 +549,7 @@ if ($requireNewInstall != 0) { print FILE get("fullName"), "\n" or die; print FILE get("fullVersion"), "\n" or die; print FILE $efiTarget, "\n" or die; - print FILE join( ":", @deviceTargets ), "\n" or die; + print FILE join( ",", @deviceTargets ), "\n" or die; print FILE $efiSysMountPoint, "\n" or die; close FILE or die; } From 97dd3b3e6294e38a8a5b52c647e1d4d5b68ae9c1 Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Tue, 5 Jul 2016 15:17:27 -0700 Subject: [PATCH 16/79] zandronum: fix build Fixes #15994 --- pkgs/games/zandronum/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/games/zandronum/default.nix b/pkgs/games/zandronum/default.nix index 27ba69ad82b..73ce80c5f39 100644 --- a/pkgs/games/zandronum/default.nix +++ b/pkgs/games/zandronum/default.nix @@ -24,6 +24,8 @@ in stdenv.mkDerivation { preConfigure = '' ln -s ${sqlite-amalgamation}/* sqlite/ + sed -ie 's| restrict| _restrict|g' dumb/include/dumb.h \ + dumb/src/it/*.c ''; cmakeFlags = From e12f789cef22fc7d4924c2acae7d805e7f39562a Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 5 Jul 2016 14:54:22 +0300 Subject: [PATCH 17/79] sng: 1.0.6 -> 1.1.0 --- pkgs/tools/graphics/sng/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/graphics/sng/default.nix b/pkgs/tools/graphics/sng/default.nix index d9b06c2adf3..098721d6b93 100644 --- a/pkgs/tools/graphics/sng/default.nix +++ b/pkgs/tools/graphics/sng/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "sng-${version}"; - version = "1.0.6"; + version = "1.1.0"; src = fetchurl { url = "mirror://sourceforge/sng/sng-${version}.tar.gz"; - sha256 = "04ym62qh8blsqigm3kr1shj9pn62y373wdaavk74rzwjzlhwhmq6"; + sha256 = "06a6ydvx9xb3vxvrzdrg3hq0rjwwj9ibr7fyyxjxq6qx1j3mb70i"; }; buildInputs = [ libpng ]; From 09f366a360fee8fae4d0e1aa642725738094ea64 Mon Sep 17 00:00:00 2001 From: Nathan Moore Date: Tue, 5 Jul 2016 18:33:51 -0700 Subject: [PATCH 18/79] solarus: init at 1.4.5 --- lib/maintainers.nix | 1 + pkgs/games/solarus/default.nix | 32 ++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 35 insertions(+) create mode 100644 pkgs/games/solarus/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 7cdd9f86ec6..ca4dd4f98e8 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -264,6 +264,7 @@ muflax = "Stefan Dorn "; myrl = "Myrl Hex "; nathan-gs = "Nathan Bijnens "; + Nate-Devv = "Nathan Moore "; nckx = "Tobias Geerinckx-Rice "; nequissimus = "Tim Steinbach "; nfjinjing = "Jinjing Wang "; diff --git a/pkgs/games/solarus/default.nix b/pkgs/games/solarus/default.nix new file mode 100644 index 00000000000..32142a2834e --- /dev/null +++ b/pkgs/games/solarus/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchFromGitHub, cmake, luajit, + SDL2, SDL2_image, SDL2_ttf, physfs, + openal, libmodplug, libvorbis}: + +stdenv.mkDerivation rec { + name = "solarus-${version}"; + version = "1.4.5"; + + src = fetchFromGitHub { + owner = "christopho"; + repo = "solarus"; + rev = "d9fdb9fdb4e1b9fc384730a9279d134ae9f2c70e"; + sha256 = "0xjx789d6crm322wmkqyq9r288vddsha59yavhy78c4r01gs1p5v"; + }; + + buildInputs = [ cmake luajit SDL2 + SDL2_image SDL2_ttf physfs + openal libmodplug libvorbis ]; + + meta = with stdenv.lib; { + description = "A Zelda-like ARPG game engine"; + longDescription = '' + Solarus is a game engine for Zelda-like ARPG games written in lua. + Many full-fledged games have been writen for the engine. + ''; + homepage = http://www.solarus-games.org; + license = licenses.gpl3; + maintainers = [ maintainers.Nate-Devv ]; + platforms = platforms.linux; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a1aad41374c..c153271422f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15581,6 +15581,8 @@ in soi = callPackage ../games/soi { lua = lua5_1; }; + + solarus = callPackage ../games/solarus { }; # You still can override by passing more arguments. space-orbit = callPackage ../games/space-orbit { }; From d5c8d7112b3d65e0ff9039c174ce5fa163208175 Mon Sep 17 00:00:00 2001 From: Ricardo Ardissone Date: Wed, 6 Jul 2016 00:45:38 -0300 Subject: [PATCH 19/79] liberal-crime-squad: 2016-05-08 -> 2016-07-06 --- pkgs/games/liberal-crime-squad/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/games/liberal-crime-squad/default.nix b/pkgs/games/liberal-crime-squad/default.nix index 799b7ab43e7..1d50ea14551 100644 --- a/pkgs/games/liberal-crime-squad/default.nix +++ b/pkgs/games/liberal-crime-squad/default.nix @@ -1,14 +1,14 @@ { fetchFromGitHub, stdenv, ncurses, autoreconfHook, SDL2, SDL2_mixer }: stdenv.mkDerivation rec { - version = "2016-05-08"; + version = "2016-07-06"; name = "liberal-crime-squad-${version}"; src = fetchFromGitHub { owner = "Kamal-Sadek"; repo = "Liberal-Crime-Squad"; - rev = "127d712"; - sha256 = "1n16rmi2gm2mcnpp0ms1whj0nzcbfw52dnd90l52w4d1g4kqf1ck"; + rev = "2ace84e"; + sha256 = "0mcldn8ivlfyjfx22ygzcbbw3bzl0j6vi3g6jyj8jmcrni61mgmb"; }; buildInputs = [ ncurses autoreconfHook SDL2 SDL2_mixer ]; From 3d316da10315c3c02f160869391ba3efd420b596 Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Tue, 5 Jul 2016 18:47:34 +0300 Subject: [PATCH 20/79] icoutils: perl dependencies added #15894 --- pkgs/tools/graphics/icoutils/default.nix | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/graphics/icoutils/default.nix b/pkgs/tools/graphics/icoutils/default.nix index 94a613078a4..300e05023b1 100644 --- a/pkgs/tools/graphics/icoutils/default.nix +++ b/pkgs/tools/graphics/icoutils/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, libpng }: +{ stdenv, fetchurl, libpng, perl, perlPackages, makeWrapper }: stdenv.mkDerivation rec { name = "icoutils-0.31.0"; @@ -8,11 +8,24 @@ stdenv.mkDerivation rec { sha256 = "0wdgyfb1clrn3maq84vi4vkwjydy72p5hzk6kb9nb3a19bbxk5d8"; }; - buildInputs = [ libpng ]; + buildInputs = [ makeWrapper libpng perl ]; + propagatedBuildInputs = [ perlPackages.LWP ]; + + patchPhase = '' + patchShebangs extresso/extresso + patchShebangs extresso/extresso.in + patchShebangs extresso/genresscript + patchShebangs extresso/genresscript.in + ''; + + preFixup = '' + wrapProgram $out/bin/extresso --prefix PERL5LIB : $PERL5LIB + wrapProgram $out/bin/genresscript --prefix PERL5LIB : $PERL5LIB + ''; meta = { homepage = http://www.nongnu.org/icoutils/; - description = "Set of programs to deal with Microsoft Windows(R) icon and cursor files"; + description = "Set of programs to deal with Microsoft Windows(R) icon and cursor files"; license = stdenv.lib.licenses.gpl3Plus; platforms = with stdenv.lib.platforms; linux; }; From 6876eab511afd1c10b8e89a1ff99aa28c6a44b2d Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 6 Jul 2016 10:11:05 +0200 Subject: [PATCH 21/79] pythonPackages.tornado: fix tests, closes #14634 The test runner would import all modules to check whether they might have tests. On a Linux system it would load the Tornado module that depends on kqueue, which is BSD only, and fail. --- pkgs/top-level/python-packages.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c3dbbaa9793..79e418f0ca7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -24738,10 +24738,12 @@ in modules // { propagatedBuildInputs = with self; [ backports_ssl_match_hostname_3_4_0_2 certifi ]; - # Tests fail: - # ValueError: _type_ 'v' not supported - # See https://github.com/NixOS/nixpkgs/issues/14634 - doCheck = false; + # We specify the name of the test files to prevent + # https://github.com/NixOS/nixpkgs/issues/14634 + checkPhase = '' + ${python.interpreter} -m unittest discover *_test.py + ''; + src = pkgs.fetchurl { url = "mirror://pypi/t/tornado/${name}.tar.gz"; sha256 = "a16fcdc4f76b184cb82f4f9eaeeacef6113b524b26a2cb331222e4a7fa6f2969"; From bdc17914227c6447baae23a9433faf335898e7cb Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 6 Jul 2016 10:29:14 +0200 Subject: [PATCH 22/79] kde5.kile: 2016-02-14 -> 2016-07-02 --- pkgs/applications/editors/kile/frameworks.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/kile/frameworks.nix b/pkgs/applications/editors/kile/frameworks.nix index 422c132b649..2fd8dfe4128 100644 --- a/pkgs/applications/editors/kile/frameworks.nix +++ b/pkgs/applications/editors/kile/frameworks.nix @@ -21,12 +21,12 @@ stdenv.mkDerivation rec { name = "kile-${version}"; - version = "2016-02-14"; + version = "2016-07-02"; src = fetchgit { url = git://anongit.kde.org/kile.git; - rev = "7b238c42580abc936816d4ea0df61d0cbbefecc4"; - sha256 = "f37d531489a84911b47664697bb3bddc0ba5591854749c17fb0c6b1e71dbc6ee"; + rev = "d38bc7069667119cc891b351188484ca6fb88973"; + sha256 = "1nha71i16fs7nq2812b5565nbmbsbs3ak5czas6xg1dg5bsvdqh8"; }; From 28159315b7f2891e90157129d82a8b6fdca659bc Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Wed, 6 Jul 2016 09:49:34 +0300 Subject: [PATCH 23/79] jpegrescan: init at 2016-06-01 --- .../graphics/jpegrescan/default.nix | 42 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 44 insertions(+) create mode 100644 pkgs/applications/graphics/jpegrescan/default.nix diff --git a/pkgs/applications/graphics/jpegrescan/default.nix b/pkgs/applications/graphics/jpegrescan/default.nix new file mode 100644 index 00000000000..1c65c7da3a2 --- /dev/null +++ b/pkgs/applications/graphics/jpegrescan/default.nix @@ -0,0 +1,42 @@ +{ stdenv, fetchFromGitHub, makeWrapper, libjpeg_turbo, perl, perlPackages }: + +stdenv.mkDerivation rec { + pname = "jpegrescan"; + date = "2016-06-01"; + name = "${pname}-${date}"; + + src = fetchFromGitHub { + owner = "kud"; + repo = pname; + rev = "e5e39cd972b48ccfb2cba4da6855c511385c05f9"; + sha256 = "0jbx1vzkzif6yjx1fnsm7fjsmq166sh7mn22lf01ll7s245nmpdp"; + }; + + patchPhase = '' + patchShebangs jpegrescan + ''; + + installPhase = '' + mkdir -p $out/share/jpegrescan + mv README.md $out/share/jpegrescan/ + mkdir $out/bin + mv jpegrescan $out/bin + chmod +x $out/bin/jpegrescan + + wrapProgram $out/bin/jpegrescan --prefix PERL5LIB : $PERL5LIB + ''; + + propagatedBuildInputs = [ perlPackages.FileSlurp ]; + + buildInputs = [ + perl libjpeg_turbo makeWrapper + ]; + + meta = with stdenv.lib; { + description = "losslessly shrink any JPEG file"; + homepage = https://github.com/kud/jpegrescan; + license = licenses.publicDomain; + maintainers = [ maintainers.ramkromberg ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c153271422f..f5b2c7013c7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2145,6 +2145,8 @@ in jpegoptim = callPackage ../applications/graphics/jpegoptim { }; + jpegrescan = callPackage ../applications/graphics/jpegrescan { }; + jq = callPackage ../development/tools/jq { }; jo = callPackage ../development/tools/jo { }; From 09e1b26c7981d905f3fc2a1f23f6a0fa43843d10 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 6 Jul 2016 12:23:02 +0200 Subject: [PATCH 24/79] mps: 1.114.0 -> 1.115.0, fix build See https://hydra.nixos.org/build/37204553/log/raw --- pkgs/development/libraries/mps/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/mps/default.nix b/pkgs/development/libraries/mps/default.nix index f3a458a80ed..d99544cb2ab 100644 --- a/pkgs/development/libraries/mps/default.nix +++ b/pkgs/development/libraries/mps/default.nix @@ -2,18 +2,15 @@ stdenv.mkDerivation rec { name = "mps-${version}"; - version = "1.114.0"; + version = "1.115.0"; src = fetchurl { url = "http://www.ravenbrook.com/project/mps/release/${version}/mps-kit-${version}.tar.gz"; - sha256 = "1gb0rdd42ib0fai2jwm2gyii8pk59i1rhblnpdzbdj8cj5g0b30h"; + sha256 = "156xdl16r44nn8svnrgfaklwrgpc3y0rxzqyp0jbdp55c6rlfl6l"; }; buildInputs = [ autoreconfHook sqlite ]; - # Fix a slightly annoying build failure in 'make install' - patchPhase = "substituteInPlace ./Makefile.in --replace /hot/Release /hot"; - meta = { description = "A flexible memory management and garbage collection library"; homepage = "http://www.ravenbrook.com/project/mps"; From 0f7f6ac0c71b6089085e10eb2215650533176cba Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 6 Jul 2016 15:16:47 +0200 Subject: [PATCH 25/79] opendylan: fix build --with-gc required path to libraries, not headers. Also: remove unused parameter & set meta.platforms = linux. --- pkgs/development/compilers/opendylan/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/opendylan/default.nix b/pkgs/development/compilers/opendylan/default.nix index 9ed85e9c4d4..773ab9f473f 100644 --- a/pkgs/development/compilers/opendylan/default.nix +++ b/pkgs/development/compilers/opendylan/default.nix @@ -1,5 +1,5 @@ # Build Open Dylan from source using the binary builds to bootstrap. -{stdenv, fetchgit, patchelf, boehmgc, mps, gnused, opendylan-bootstrap, autoconf, automake, perl, makeWrapper, gcc }: +{stdenv, fetchgit, boehmgc, mps, gnused, opendylan-bootstrap, autoconf, automake, perl, makeWrapper, gcc }: stdenv.mkDerivation { name = "opendylan-2013.2"; @@ -24,7 +24,7 @@ stdenv.mkDerivation { ./autogen.sh ''; - configureFlags = if stdenv.system == "i686-linux" then "--with-mps=$(TMPDIR)/mps" else "--with-gc=${boehmgc.dev}"; + configureFlags = if stdenv.system == "i686-linux" then "--with-mps=$(TMPDIR)/mps" else "--with-gc=${boehmgc.out}"; buildPhase = "make 3-stage-bootstrap"; postInstall = "wrapProgram $out/bin/dylan-compiler --suffix PATH : ${gcc}/bin"; @@ -33,5 +33,6 @@ stdenv.mkDerivation { homepage = http://opendylan.org; description = "A multi-paradigm functional and object-oriented programming language"; license = stdenv.lib.licenses.mit; + platforms = stdenv.lib.platforms.linux; }; } From c70db3456f57b82c46347635eda2fa9d0bfced34 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 6 Jul 2016 15:36:12 +0200 Subject: [PATCH 26/79] cassandra_3_0: 3.0.7 -> 3.0.8 --- pkgs/servers/nosql/cassandra/3.0.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/nosql/cassandra/3.0.nix b/pkgs/servers/nosql/cassandra/3.0.nix index 050042eac5a..68c2815ddd3 100644 --- a/pkgs/servers/nosql/cassandra/3.0.nix +++ b/pkgs/servers/nosql/cassandra/3.0.nix @@ -11,8 +11,8 @@ let - version = "3.0.7"; - sha256 = "0g4nf9zw3by8api9c8np0ixianmwcldcq2mpkqqirj0zlpiii68d"; + version = "3.0.8"; + sha256 = "02chk8q3pbl0y6rijfk2gbd0p1ani8daypsx9m9ingqkdx8ajljq"; in From d391db8c0167b1b23c9684bd01936f3d9c196a0b Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 6 Jul 2016 15:43:33 +0200 Subject: [PATCH 27/79] cassandra_2_1: 2.1.14 -> 2.1.15 --- pkgs/servers/nosql/cassandra/2.1.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/nosql/cassandra/2.1.nix b/pkgs/servers/nosql/cassandra/2.1.nix index 6c09c977d29..5e9a57bfe55 100644 --- a/pkgs/servers/nosql/cassandra/2.1.nix +++ b/pkgs/servers/nosql/cassandra/2.1.nix @@ -11,8 +11,8 @@ let - version = "2.1.14"; - sha256 = "168rg8gg1dhcjfjsr1jbfx4zj3zyqn0xi2z1j2c8jn6054486ybg"; + version = "2.1.15"; + sha256 = "1yc6r4gmxz9c4zghzn6bz5wswz7dz61w7p4x9s5gqnixfp2mlapp"; in From 12c055240dcf2aec5f13ca1bfbae6a44e5cd42be Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 6 Jul 2016 15:45:16 +0200 Subject: [PATCH 28/79] dpkg: 1.18.7 -> 1.18.8 --- pkgs/tools/package-management/dpkg/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/package-management/dpkg/default.nix b/pkgs/tools/package-management/dpkg/default.nix index 78ab51bfaac..47b6a7460c8 100644 --- a/pkgs/tools/package-management/dpkg/default.nix +++ b/pkgs/tools/package-management/dpkg/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "dpkg-${version}"; - version = "1.18.7"; + version = "1.18.8"; src = fetchurl { url = "mirror://debian/pool/main/d/dpkg/dpkg_${version}.tar.xz"; - sha256 = "0yxqv7b5a1qhhas9dzxr5gwj22jqxisrwzvrmwms8l67dlx6vqxc"; + sha256 = "1dv57xxd6ykmhp1cra5xyi7kzl9sl782q9kwwx7wbma6i9bn4m8b"; }; postPatch = '' From b30852ed41f7e6729de9a75a71a671ce7d03dff9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Wed, 6 Jul 2016 13:41:40 +0200 Subject: [PATCH 29/79] nixos/swap: support for resizing swapfile Currently NixOS creates the swapfile (with the specified size) only if it doesn't already exist. Changing the swapfile size afterwards will not have any effect. This commit changes that so the swapfile will be recreated whenever swapDevices.*.size is changed (or more precisely, whenever the actual file size differs from the configured one), allowing both growing and shrinking the swapfile. The service unit has "restartIfChanged = false", so we don't have to worry about the swapfile being in use at the time this code is run (you have to reboot for swapfile changes). fallocate doesn't shrink files, use truncate for that. truncate can also be used to grow files, but it creates "holes" in the file which doesn't work with swapfiles. --- nixos/modules/config/swap.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/nixos/modules/config/swap.nix b/nixos/modules/config/swap.nix index f0353c5a35e..62b6e011713 100644 --- a/nixos/modules/config/swap.nix +++ b/nixos/modules/config/swap.nix @@ -30,8 +30,7 @@ let description = '' If this option is set, ‘device’ is interpreted as the path of a swapfile that will be created automatically - with the indicated size (in megabytes) if it doesn't - exist. + with the indicated size (in megabytes). ''; }; @@ -132,9 +131,13 @@ in script = '' ${optionalString (sw.size != null) '' - if [ ! -e "${sw.device}" ]; then + currentSize=$(( $(stat -c "%s" "${sw.device}" 2>/dev/null || echo 0) / 1024 / 1024 )) + if [ "${toString sw.size}" != "$currentSize" ]; then fallocate -l ${toString sw.size}M "${sw.device}" || dd if=/dev/zero of="${sw.device}" bs=1M count=${toString sw.size} + if [ "${toString sw.size}" -lt "$currentSize" ]; then + truncate --size "${toString sw.size}M" "${sw.device}" + fi chmod 0600 ${sw.device} ${optionalString (!sw.randomEncryption) "mkswap ${sw.realDevice}"} fi From 851cd1e6af3eeec0b298563f8b584a4eee389a69 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Tue, 7 Jun 2016 00:15:35 +0800 Subject: [PATCH 30/79] pythonPackages.pyexcelerator: init at 0.6.4.1 --- pkgs/top-level/python-packages.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 79e418f0ca7..0c78799ffe1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17871,6 +17871,27 @@ in modules // { }; }; + pyexcelerator = buildPythonPackage rec { + name = "pyexcelerator-${version}"; + version = "0.6.4.1"; + + src = pkgs.fetchurl { + url = "mirror://pypi/p/pyexcelerator/${name}.tar.bz2"; + sha256 = "18rcnc9f71lj06h8nppnv6idzb7xfmh2rp1zfqayskcg686lilrb"; + }; + + disabled = isPy3k; + + # No tests are included in archive + doCheck = false; + + meta = { + description = "library for generating Excel 97/2000/XP/2003 and OpenOffice Calc compatible spreadsheets."; + homepage = "https://sourceforge.net/projects/pyexcelerator"; + license = licenses.bsdOriginal; + maintainers = with maintainers; [ womfoo ]; + }; + }; pyfeed = buildPythonPackage rec { url = "http://www.blarg.net/%7Esteveha/pyfeed-0.7.4.tar.gz"; From 05b3749bb2a8588746a5b13770145d4aea73e51e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 6 Jul 2016 11:34:43 -0500 Subject: [PATCH 31/79] dropbox: don't use bundled Qt libraries Fixes #16744. --- .../networking/dropbox/default.nix | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix index 30101231611..e0fa18dcb42 100644 --- a/pkgs/applications/networking/dropbox/default.nix +++ b/pkgs/applications/networking/dropbox/default.nix @@ -3,6 +3,7 @@ , libdrm, libffi, libICE, libSM , libX11, libXcomposite, libXext, libXmu, libXrender, libxcb , libxml2, libxslt, ncurses, zlib +, qtbase, qtdeclarative, qtquick1, qtwebkit }: # this package contains the daemon version of dropbox @@ -20,7 +21,8 @@ # them with our own. let - # NOTE: When updating, please also update in current stable, as older versions stop working + # NOTE: When updating, please also update in current stable, + # as older versions stop working version = "4.4.29"; sha256 = { @@ -42,6 +44,8 @@ let dbus_libs fontconfig freetype gcc.cc glib libdrm libffi libICE libSM libX11 libXcomposite libXext libXmu libXrender libxcb libxml2 libxslt ncurses zlib + + qtbase qtdeclarative qtquick1 qtwebkit ]; desktopItem = makeDesktopItem { @@ -77,6 +81,19 @@ in stdenv.mkDerivation { rm "$out/${appdir}/libGL.so.1" rm "$out/${appdir}/libX11-xcb.so.1" + rm "$out/${appdir}/libQt5Core.so.5" + rm "$out/${appdir}/libQt5DBus.so.5" + rm "$out/${appdir}/libQt5Gui.so.5" + rm "$out/${appdir}/libQt5Network.so.5" + rm "$out/${appdir}/libQt5OpenGL.so.5" + rm "$out/${appdir}/libQt5PrintSupport.so.5" + rm "$out/${appdir}/libQt5Qml.so.5" + rm "$out/${appdir}/libQt5Quick.so.5" + rm "$out/${appdir}/libQt5Sql.so.5" + rm "$out/${appdir}/libQt5WebKit.so.5" + rm "$out/${appdir}/libQt5WebKitWidgets.so.5" + rm "$out/${appdir}/libQt5XcbQpa.so.5" + mkdir -p "$out/share/applications" cp "${desktopItem}/share/applications/"* $out/share/applications From 87be90336fa26cf99400d97cbd6936ec71171089 Mon Sep 17 00:00:00 2001 From: Miguel Madrid Date: Wed, 6 Jul 2016 19:40:05 +0200 Subject: [PATCH 32/79] links2: 2.12 -> 2.13 (#16756) --- pkgs/applications/networking/browsers/links2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/links2/default.nix b/pkgs/applications/networking/browsers/links2/default.nix index 4ea6e619b17..148e20f1bbc 100644 --- a/pkgs/applications/networking/browsers/links2/default.nix +++ b/pkgs/applications/networking/browsers/links2/default.nix @@ -8,12 +8,12 @@ }: stdenv.mkDerivation rec { - version = "2.12"; + version = "2.13"; name = "links2-${version}"; src = fetchurl { url = "${meta.homepage}/download/links-${version}.tar.bz2"; - sha256 = "0knq15yrp60s4jh92aacw8yfc2pcv3bqsw7dba7h5s6ivq8ihhcq"; + sha256 = "c252095334a3b199fa791c6f9a9affe2839a7fbd536685ab07851cb7efaa4405"; }; buildInputs = From 921d3321f50cf59741f734a87d2dc79499f68759 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 6 Jul 2016 16:38:02 +0200 Subject: [PATCH 33/79] trezor-bridge: mark as broken Cool, a bitcoin wallet app silently changes its hash. CC maintainer @ehmry --- .../networking/browsers/mozilla-plugins/trezor/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/trezor/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/trezor/default.nix index ad3c1a715b3..db871c0c9a5 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/trezor/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/trezor/default.nix @@ -39,6 +39,9 @@ stdenv.mkDerivation { homepage = https://mytrezor.com; license = licenses.unfree; maintainers = with maintainers; [ ehmry ]; + # Download URL, .deb content & hash (yikes) changed, not version. + # New archive doesn't contain any Mozilla plugin at all. + broken = true; }; } \ No newline at end of file From ce5c51b406c095f8962fe09e65c73865aeb4334e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 6 Jul 2016 19:40:32 +0200 Subject: [PATCH 34/79] dpkg: 1.18.8 -> 1.18.9 --- pkgs/tools/package-management/dpkg/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/package-management/dpkg/default.nix b/pkgs/tools/package-management/dpkg/default.nix index 47b6a7460c8..15ec4e87908 100644 --- a/pkgs/tools/package-management/dpkg/default.nix +++ b/pkgs/tools/package-management/dpkg/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "dpkg-${version}"; - version = "1.18.8"; + version = "1.18.9"; src = fetchurl { url = "mirror://debian/pool/main/d/dpkg/dpkg_${version}.tar.xz"; - sha256 = "1dv57xxd6ykmhp1cra5xyi7kzl9sl782q9kwwx7wbma6i9bn4m8b"; + sha256 = "14r011vpzcfsglzl2dr2ywrdxl9r2jhs0iy9nswmxrz92zwlmb46"; }; postPatch = '' From 7129ebbd5e107be149d4af09f3da90094ec50b14 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Sun, 26 Jun 2016 20:05:54 -0700 Subject: [PATCH 35/79] dolphin-emu: 4.0.2 -> 5.0 --- pkgs/misc/emulators/dolphin-emu/default.nix | 23 +++++++++++++-------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/pkgs/misc/emulators/dolphin-emu/default.nix b/pkgs/misc/emulators/dolphin-emu/default.nix index 749573f474a..bbd25f2b3de 100644 --- a/pkgs/misc/emulators/dolphin-emu/default.nix +++ b/pkgs/misc/emulators/dolphin-emu/default.nix @@ -1,13 +1,17 @@ { stdenv, pkgconfig, cmake, bluez, ffmpeg, libao, mesa, gtk2, glib -, gettext, libpthreadstubs, libXrandr, libXext, readline -, openal, libXdmcp, portaudio, SDL, wxGTK30, fetchurl +, gettext, libpthreadstubs, libXrandr, libXext, readline, openal +, libXdmcp, portaudio, fetchFromGitHub, libusb, libevdev , libpulseaudio ? null }: stdenv.mkDerivation rec { - name = "dolphin-emu-4.0.2"; - src = fetchurl { - url = https://github.com/dolphin-emu/dolphin/archive/4.0.2.tar.gz; - sha256 = "0a8ikcxdify9d7lqz8fn2axk2hq4q1nvbcsi1b8vb9z0mdrhzw89"; + name = "dolphin-emu-${version}"; + version = "5.0"; + + src = fetchFromGitHub { + owner = "dolphin-emu"; + repo = "dolphin"; + rev = version; + sha256 = "07mlfnh0hwvk6xarcg315x7z2j0qbg9g7cm040df9c8psiahc3g6"; }; cmakeFlags = '' @@ -22,14 +26,15 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig cmake bluez ffmpeg libao mesa gtk2 glib gettext libpthreadstubs libXrandr libXext readline openal - libXdmcp portaudio SDL wxGTK30 libpulseaudio ]; + libevdev libXdmcp portaudio libusb libpulseaudio ]; meta = { homepage = http://dolphin-emu.org/; description = "Gamecube/Wii/Triforce emulator for x86_64 and ARM"; license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; maintainers = with stdenv.lib.maintainers; [ MP2E ]; - broken = true; + # x86_32 is an unsupported platform. + # Enable generic build if you really want a JIT-less binary. + platforms = [ "x86_64-linux" ]; }; } From 18312f2947943b5eec1c5d09c464afb0e40caf73 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 6 Jul 2016 23:42:47 +0200 Subject: [PATCH 36/79] perl-Test-Simple: 1.302022 -> 1.302037 --- pkgs/top-level/perl-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 71909584654..c1eec2b01a8 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -12645,10 +12645,10 @@ let self = _self // overrides; _self = with self; { TestSimple = null; TestSimple13 = buildPerlPackage rec { - name = "Test-Simple-1.302022"; + name = "Test-Simple-1.302037"; src = fetchurl { url = "mirror://cpan/authors/id/E/EX/EXODIST/${name}.tar.gz"; - sha256 = "dfaa1bbbb57737de76ebe79ac6ee57b5fa3e901b57e56007ac99ec54d2e24326"; + sha256 = "fbeba16906ef534e2334acad2020941b6705ab98543536900e588e93409f23b8"; }; meta = { description = "Basic utilities for writing tests"; From d787e62d3970b0e37061f8f397a7db624232a209 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Wed, 6 Jul 2016 23:43:06 +0200 Subject: [PATCH 37/79] perl-Test2-Suite: 0.000042 -> 0.000048 --- pkgs/top-level/perl-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index c1eec2b01a8..63e459a34d7 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -12000,10 +12000,10 @@ let self = _self // overrides; _self = with self; { }; Test2Suite = buildPerlPackage rec { - name = "Test2-Suite-0.000042"; + name = "Test2-Suite-0.000048"; src = fetchurl { url = "mirror://cpan/authors/id/E/EX/EXODIST/${name}.tar.gz"; - sha256 = "aade2e730a5ef5753a4757c6d72ae68cd9f91bbe74c121734a32a072d1f08fd0"; + sha256 = "75f1773976561be47508c4bdde41ac453fcaaffba588c6a2c520e45bca88dbed"; }; propagatedBuildInputs = [ TestSimple13 ]; meta = { From fe2468b88cbc586232a86aedf8e00facf8919219 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Thu, 7 Jul 2016 02:11:23 +0200 Subject: [PATCH 38/79] pypi2nix: 1.1.0 -> 1.2.0 --- pkgs/development/tools/pypi2nix/default.nix | 4 +-- pkgs/development/tools/pypi2nix/deps.nix | 31 +++++++++++++++++++++ 2 files changed, 33 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/pypi2nix/default.nix b/pkgs/development/tools/pypi2nix/default.nix index 4ddd8d2aaae..796aa56ce0b 100644 --- a/pkgs/development/tools/pypi2nix/default.nix +++ b/pkgs/development/tools/pypi2nix/default.nix @@ -3,10 +3,10 @@ let deps = import ./deps.nix { inherit fetchurl; }; - version = "1.1.0"; + version = "1.2.0"; src = fetchurl { url = "https://github.com/garbas/pypi2nix/archive/v${version}.tar.gz"; - sha256 = "0la4f0cqq089hjzwa509snkqhxvwszp5zglmb0yy1m7ins3yhg2m"; + sha256 = "13ffr2iabl5lyqqdcrs8z37lfqw1n102bkxwfx0540hj6brvkm2v"; }; in stdenv.mkDerivation rec { diff --git a/pkgs/development/tools/pypi2nix/deps.nix b/pkgs/development/tools/pypi2nix/deps.nix index acfcf02dfee..2717270a164 100644 --- a/pkgs/development/tools/pypi2nix/deps.nix +++ b/pkgs/development/tools/pypi2nix/deps.nix @@ -32,6 +32,12 @@ rec { effectVersion = "0.10.1"; effectHash = "6a6fd28fb44179ce01a148d4e8bdbede"; + chardetVersion = "2.3.0"; + chardetHash = "25274d664ccb5130adae08047416e1a8"; + + aiohttpVersion = "0.21.6"; + aiodnsHash = "d7f63e51bc86a61d9bccca13986c3855"; + # --- wheels used to bootstrap python environment --------------------------- @@ -78,4 +84,29 @@ rec { md5 = clickHash; }; + # six = fetchurl { + # url = "https://pypi.python.org/packages/b3/b2/238e2590826bfdd113244a40d9d3eb26918bd798fc187e2360a8367068db/six-${sixVersion}.tar.gz"; + # md5 = sixHash; + # }; + + # attrs = fetchurl { + # url = "https://pypi.python.org/packages/89/15/80d388d696c8c8ba14874635207aa698eb30ef1242dbb54d9eccf0e927ff/attrs-${attrsVersion}.tar.gz"; + # md5 = attrsHash; + # }; + + # effect = fetchurl { + # url = "https://pypi.python.org/packages/09/19/bd92fe0ba6080323caffd450db65ac7a5bb2d71d9b61fe6a2751a9c3292c/effect-${effectVersion}.tar.gz"; + # md5 = effectHash; + # }; + + chardet = fetchurl { + url = "https://pypi.python.org/packages/7d/87/4e3a3f38b2f5c578ce44f8dc2aa053217de9f0b6d737739b0ddac38ed237/chardet-${chardetVersion}.tar.gz"; + md5 = chardetHash; + }; + + aiohttp = fetchurl { + url = "https://pypi.python.org/packages/04/78/9faeb8b5b1d53e8c81c99764412c2225d982943e4261bba2c6f725e15fce/aiohttp-${aiohttpVersion}.tar.gz"; + md5 = aiodnsHash; + }; + } From 51c6c98529a6b9197bf99276561d582e9aef0154 Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Thu, 7 Jul 2016 09:24:49 +0200 Subject: [PATCH 39/79] freecad: 0.15 -> 0.16 --- pkgs/applications/graphics/freecad/default.nix | 10 +++++----- pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/python-packages.nix | 11 +++++++++++ 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/graphics/freecad/default.nix b/pkgs/applications/graphics/freecad/default.nix index 0390021d839..482abe2126f 100644 --- a/pkgs/applications/graphics/freecad/default.nix +++ b/pkgs/applications/graphics/freecad/default.nix @@ -1,19 +1,19 @@ { stdenv, fetchurl, cmake, coin3d, xercesc, ode, eigen, qt4, opencascade, gts , boost, zlib, python, swig, gfortran, soqt, libf2c, makeWrapper -, matplotlib, pycollada, pyside, pysideTools, pysideShiboken }: +, matplotlib, pycollada, pyside, pysideTools, pysideShiboken, pivy }: stdenv.mkDerivation rec { name = "freecad-${version}"; - version = "0.15"; + version = "0.16"; src = fetchurl { - url = https://github.com/FreeCAD/FreeCAD/archive/0.15.tar.gz; - sha256 = "1vndvywvq86hyhmg629bkn5ag4lk2mg1pl4dq7jvbjvbrczb12fc"; + url = "https://github.com/FreeCAD/FreeCAD/archive/${version}.tar.gz"; + sha256 = "02cfw5wlb04j0ymhk4skrm7rvbz13hpv995asf9v8q6wn2s1mivc"; }; buildInputs = [ cmake coin3d xercesc ode eigen qt4 opencascade gts boost zlib python swig gfortran soqt libf2c makeWrapper matplotlib - pycollada pyside pysideShiboken pysideTools + pycollada pyside pysideShiboken pysideTools pivy ]; enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f5b2c7013c7..716eca125f1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12924,7 +12924,7 @@ in freecad = callPackage ../applications/graphics/freecad { boost = boost155; opencascade = opencascade_oce; - inherit (pythonPackages) matplotlib pycollada; + inherit (pythonPackages) matplotlib pycollada pivy; }; freemind = callPackage ../applications/misc/freemind { }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0c78799ffe1..26b63524cf1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -28329,4 +28329,15 @@ in modules // { propagatedBuildInputs = with self; [ requests2 six dateutil ]; }; + + pivy = buildPythonPackage rec { + version = "20101207"; + name = "pivy-${version}"; + src = pkgs.fetchhg { + url = "https://bitbucket.org/Coin3D/pivy"; + rev = "8eab90908f2a3adcc414347566f4434636202344"; + sha256 = "18n14ha2d3j3ghg2f2aqnf2mks94nn7ma9ii7vkiwcay93zm82cf"; + }; + buildInputs = with self; [ pkgs.swig1 pkgs.coin3d pkgs.soqt pkgs.mesa pkgs.xorg.libXi ]; + }; } From c7b809298daf1dd8802782f61c1078d062223387 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 1 Jul 2016 13:28:19 +0200 Subject: [PATCH 40/79] boto: 2.38.0 -> 2.41.0 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 26b63524cf1..472a27bf051 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2660,11 +2660,11 @@ in modules // { boto = buildPythonPackage rec { name = "boto-${version}"; - version = "2.38.0"; + version = "2.41.0"; src = pkgs.fetchurl { url = "https://github.com/boto/boto/archive/${version}.tar.gz"; - sha256 = "0l7m3lmxmnknnz9svzc7z26rklwckzwqgz6hgackl62gkndryrgj"; + sha256 = "1n33bfbkpijyy6awjq7a8lrw4hw2lmwv5l7j0am6d34gpa8my75l"; }; checkPhase = '' From 401016780339eb62f51c294f51d02dc363199dd5 Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Thu, 7 Jul 2016 02:22:32 +0300 Subject: [PATCH 41/79] io: clean up --- pkgs/development/interpreters/io/default.nix | 30 ++++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/pkgs/development/interpreters/io/default.nix b/pkgs/development/interpreters/io/default.nix index 8ed50b88687..5adca2c0b42 100644 --- a/pkgs/development/interpreters/io/default.nix +++ b/pkgs/development/interpreters/io/default.nix @@ -13,28 +13,25 @@ stdenv.mkDerivation { sha256 = "0ll2kd72zy8vf29sy0nnx3awk7nywpwpv21rvninjjaqkygrc0qw"; }; + nativeBuildInputs = [ + cmake + ]; + buildInputs = [ - cmake zlib sqlite gmp libffi cairo ncurses freetype + zlib sqlite gmp libffi cairo ncurses freetype mesa libpng libtiff libjpeg readline libsndfile libxml2 freeglut libsamplerate pcre libevent libedit yajl pkgconfig glfw openssl libpthreadstubs libXdmcp libmemcached python3 ]; - configurePhase='' - # The Addon generation (AsyncRequest and a others checked) seems to have - # trouble with building on Virtual machines. Disabling them until it - # can be fully investigated. - sed -ie \ - "s/add_subdirectory(addons)/#add_subdirectory(addons)/g" \ - CMakeLists.txt - mkdir build - cd build - cmake -DCMAKE_INSTALL_PREFIX="$out" .. - ''; - - installPhase='' - make install + preConfigure = '' + # The Addon generation (AsyncRequest and a others checked) seems to have + # trouble with building on Virtual machines. Disabling them until it + # can be fully investigated. + sed -ie \ + "s/add_subdirectory(addons)/#add_subdirectory(addons)/g" \ + CMakeLists.txt ''; # for gcc5; c11 inline semantics breaks the build @@ -42,6 +39,9 @@ stdenv.mkDerivation { meta = with stdenv.lib; { description = "Io programming language"; + homepage = http://iolanguage.org/; + license = licenses.bsd3; + maintainers = with maintainers; [ raskin z77z From a3658d0cb3a568b0f6d616a5a92c56828d46ef28 Mon Sep 17 00:00:00 2001 From: Nicolas Petton Date: Fri, 22 Apr 2016 18:29:44 +0200 Subject: [PATCH 42/79] file-roller: Enable nautilus extension --- pkgs/desktops/gnome-3/3.20/apps/file-roller/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/apps/file-roller/default.nix b/pkgs/desktops/gnome-3/3.20/apps/file-roller/default.nix index df90c7b2977..18188829377 100644 --- a/pkgs/desktops/gnome-3/3.20/apps/file-roller/default.nix +++ b/pkgs/desktops/gnome-3/3.20/apps/file-roller/default.nix @@ -1,17 +1,16 @@ { stdenv, fetchurl, glib, pkgconfig, gnome3, intltool, itstool, libxml2, libarchive -, attr, bzip2, acl, wrapGAppsHook, librsvg, gdk_pixbuf }: +, attr, bzip2, acl, wrapGAppsHook, librsvg, gdk_pixbuf, libnotify, nautilus }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; - # TODO: support nautilus - # it tries to create {nautilus}/lib/nautilus/extensions-3.0/libnautilus-fileroller.so - nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; buildInputs = [ glib gnome3.gtk intltool itstool libxml2 libarchive gnome3.defaultIconTheme attr bzip2 acl gdk_pixbuf librsvg - gnome3.dconf ]; + gnome3.dconf libnotify nautilus ]; + + installFlags = [ "nautilus_extensiondir=$(out)/lib/nautilus/extensions-3.0" ]; meta = with stdenv.lib; { homepage = https://wiki.gnome.org/Apps/FileRoller; From e6e28e7865e56cdfee3bce34dc65afb1bd320f92 Mon Sep 17 00:00:00 2001 From: Philip Potter Date: Tue, 21 Jun 2016 07:56:09 +0100 Subject: [PATCH 43/79] gnome-keyring: remove unused configure flag The --with-ca-certificates flag seems to have been removed in [this commit][1] from March 2013. The configure script now just warns about an unknown option. [1]: https://git.gnome.org/browse/gnome-keyring/commit/?id=7afaae43f205c059163c3670169af302f1ba6de3 --- pkgs/desktops/gnome-3/3.20/core/gnome-keyring/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-keyring/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-keyring/default.nix index 8e755383dd6..e3dc558a49a 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-keyring/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-keyring/default.nix @@ -15,7 +15,6 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig intltool docbook_xsl_ns docbook_xsl ]; configureFlags = [ - "--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt" # NixOS hardcoded path "--with-pkcs11-config=$$out/etc/pkcs11/" # installation directories "--with-pkcs11-modules=$$out/lib/pkcs11/" ]; From 7f41dca05ad1ca4e84930a0f8e3891f4cb5a23a2 Mon Sep 17 00:00:00 2001 From: Nicolas Petton Date: Thu, 14 Apr 2016 23:31:43 +0200 Subject: [PATCH 44/79] gnome-maps: Add missing build inputs Without gnome3.gsettings_desktop_schemas and gnome3.evolution_data_server as buildInputs, gnome-maps won't start at all. --- pkgs/desktops/gnome-3/3.20/apps/gnome-maps/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/default.nix index b9aac0539ae..caff53dcc1d 100644 --- a/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/default.nix +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/default.nix @@ -11,6 +11,7 @@ stdenv.mkDerivation rec { gtk3 geoclue2 gnome3.gjs gnome3.libgee folks gfbgraph gnome3.geocode_glib libchamplain file libsoup gdk_pixbuf librsvg autoreconfHook + gnome3.gsettings_desktop_schemas gnome3.evolution_data_server gnome3.gnome_online_accounts gnome3.defaultIconTheme ]; patches = [ ./soup.patch ]; From 72221e71d56c375960285acce62e2c19b545cfc7 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Thu, 7 Jul 2016 08:44:05 -0400 Subject: [PATCH 45/79] slack: 2.0.3 -> 2.1.0 --- .../networking/instant-messengers/slack/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/slack/default.nix b/pkgs/applications/networking/instant-messengers/slack/default.nix index 1f2b5ebe7fa..669ab7d3bed 100644 --- a/pkgs/applications/networking/instant-messengers/slack/default.nix +++ b/pkgs/applications/networking/instant-messengers/slack/default.nix @@ -4,7 +4,7 @@ let - version = "2.0.3"; + version = "2.1.0"; rpath = stdenv.lib.makeLibraryPath [ alsaLib @@ -42,7 +42,7 @@ let if stdenv.system == "x86_64-linux" then fetchurl { url = "https://slack-ssb-updates.global.ssl.fastly.net/linux_releases/slack-desktop-${version}-amd64.deb"; - sha256 = "0pp8n1w9kmh3pph5kc6akdswl3z2lqwryjg9d267wgj62mslr3cg"; + sha256 = "0p9ffcy3xva1jwaafw4kw424687838s6cn5dh82ncvcr1pnyk63b"; } else throw "Slack is not supported on ${stdenv.system}"; From a2ac3683ce9eb271a865f59a670e03d5ac236df9 Mon Sep 17 00:00:00 2001 From: vbgl Date: Thu, 7 Jul 2016 15:29:13 +0200 Subject: [PATCH 46/79] camlzip: 1.05 -> 1.06 (#16443) --- .../ocaml-modules/camlzip/default.nix | 33 ++++++++++++++----- .../{makefile.patch => makefile_1_05.patch} | 2 +- .../ocaml-modules/camlzip/makefile_1_06.patch | 22 +++++++++++++ 3 files changed, 48 insertions(+), 9 deletions(-) rename pkgs/development/ocaml-modules/camlzip/{makefile.patch => makefile_1_05.patch} (96%) create mode 100644 pkgs/development/ocaml-modules/camlzip/makefile_1_06.patch diff --git a/pkgs/development/ocaml-modules/camlzip/default.nix b/pkgs/development/ocaml-modules/camlzip/default.nix index 9025d94b8d5..9e2ef8ef468 100644 --- a/pkgs/development/ocaml-modules/camlzip/default.nix +++ b/pkgs/development/ocaml-modules/camlzip/default.nix @@ -2,26 +2,39 @@ let ocaml_version = (builtins.parseDrvName ocaml.name).version; - version = "1.05"; + param = + if stdenv.lib.versionAtLeast ocaml_version "4.02" + then { + version = "1.06"; + url = "1616"; + sha256 = "0m6gyjw46w3qnhxfsyqyag42znl5lwargks7w7rfchr9jzwpff68"; + patch = ./makefile_1_06.patch; + installTargets = "install-findlib"; + } else { + version = "1.05"; + url = "1037"; + sha256 = "930b70c736ab5a7ed1b05220102310a0a2241564786657abe418e834a538d06b"; + patch = ./makefile_1_05.patch; + installTargets = "install"; + }; in stdenv.mkDerivation { - name = "camlzip-${version}"; + name = "camlzip-${param.version}"; src = fetchurl { - url = "http://forge.ocamlcore.org/frs/download.php/1037/" + - "camlzip-${version}.tar.gz"; - sha256 = "930b70c736ab5a7ed1b05220102310a0a2241564786657abe418e834a538d06b"; + url = "http://forge.ocamlcore.org/frs/download.php/${param.url}/camlzip-${param.version}.tar.gz"; + inherit (param) sha256; }; buildInputs = [zlib ocaml findlib]; - patches = [ ./makefile.patch ]; + patches = [ param.patch ]; createFindlibDestdir = true; postPatch = '' - substitute ${./META} META --subst-var-by VERSION "${version}" + substitute ${./META} META --subst-var-by VERSION "${param.version}" substituteInPlace Makefile \ --subst-var-by ZLIB_LIBDIR "${zlib.out}/lib" \ --subst-var-by ZLIB_INCLUDE "${zlib.dev}/include" @@ -29,7 +42,11 @@ stdenv.mkDerivation { buildFlags = "all allopt"; - installTargets = "install"; + inherit (param) installTargets; + + postInstall = '' + ln -s $out/lib/ocaml/${ocaml_version}/site-lib/{,caml}zip + ''; meta = { homepage = "http://cristal.inria.fr/~xleroy/software.html#camlzip"; diff --git a/pkgs/development/ocaml-modules/camlzip/makefile.patch b/pkgs/development/ocaml-modules/camlzip/makefile_1_05.patch similarity index 96% rename from pkgs/development/ocaml-modules/camlzip/makefile.patch rename to pkgs/development/ocaml-modules/camlzip/makefile_1_05.patch index 07637100d03..87d0c8bec33 100644 --- a/pkgs/development/ocaml-modules/camlzip/makefile.patch +++ b/pkgs/development/ocaml-modules/camlzip/makefile_1_05.patch @@ -48,7 +48,7 @@ diff -Nuar camlzip-1.04/Makefile camlzip-1.04.nixpkgs/Makefile - -installopt: - cp zip.cmxa zip.a zip.cmx gzip.cmx $(INSTALLDIR) -+ $(OCAMLFIND) install camlzip META $(LIBINSTALL_FILES) ++ $(OCAMLFIND) install zip META $(LIBINSTALL_FILES) depend: gcc -MM -I$(ZLIB_INCLUDE) *.c > .depend diff --git a/pkgs/development/ocaml-modules/camlzip/makefile_1_06.patch b/pkgs/development/ocaml-modules/camlzip/makefile_1_06.patch new file mode 100644 index 00000000000..ab0d3528c8c --- /dev/null +++ b/pkgs/development/ocaml-modules/camlzip/makefile_1_06.patch @@ -0,0 +1,22 @@ +--- a/Makefile 2016-06-10 14:37:48.000000000 +0200 ++++ b/Makefile 2016-06-23 05:10:26.000000000 +0200 +@@ -4,17 +4,13 @@ + ZLIB_LIB=-lz + + # The directory containing the Zlib library (libz.a or libz.so) +-ZLIB_LIBDIR=/usr/lib ++ZLIB_LIBDIR=@ZLIB_LIBDIR@ + # ZLIB_LIBDIR=/usr/local/lib + + # The directory containing the Zlib header file (zlib.h) +-ZLIB_INCLUDE=/usr/include ++ZLIB_INCLUDE=@ZLIB_INCLUDE@ + # ZLIB_INCLUDE=/usr/local/include + +-# Where to install the library. By default: sub-directory 'zip' of +-# OCaml's standard library directory. +-INSTALLDIR=`$(OCAMLC) -where`/zip +- + ### End of configuration section + + OCAMLC=ocamlc -g -safe-string From 7a8de0fdcf90bcb10a23931135ac49e674eac583 Mon Sep 17 00:00:00 2001 From: Neil Mayhew Date: Thu, 7 Jul 2016 07:28:29 -0600 Subject: [PATCH 47/79] symbola: fix hash mismatch due to new upstream release Upstream releases are made in-place, ie they update the same URL rather than creating a new one. --- pkgs/data/fonts/gdouros/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/data/fonts/gdouros/default.nix b/pkgs/data/fonts/gdouros/default.nix index 114b88c3040..7cbad019d2f 100644 --- a/pkgs/data/fonts/gdouros/default.nix +++ b/pkgs/data/fonts/gdouros/default.nix @@ -5,7 +5,7 @@ let description = "Scripts and symbols of the Aegean world"; }; textfonts = { version = "6.00"; file = "Textfonts.zip"; sha256 = "06igp3hdql0yfaj9h2ahh5n7yvj2ni7rj2jdmz534f9618l8qi6r"; description = "Fonts based on early Greek editions"; }; - symbola = { version = "8.00"; file = "Symbola.zip"; sha256 = "1lfs2j816332ysvpb5ibj2gwpmyqyispqdl7skkshf2gra18hmhd"; + symbola = { version = "9.00"; file = "Symbola.zip"; sha256 = "0d9zrlvzh8inhr17p99banr0dmrvkwxbk3q7zhqqx2z4gf2yavc5"; description = "Basic Latin, Greek, Cyrillic and many Symbol blocks of Unicode"; }; aegyptus = { version = "6.00"; file = "Aegyptus.zip"; sha256 = "10mr54ja9b169fhqfkrw510jybghrpjx7a8a7m38k5v39ck8wz6v"; description = "Egyptian Hieroglyphs, Coptic, Meroitic"; }; From 7f4d52e27ec9ea9d06c3f992bfee96a9d7ae58d5 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 19 Jun 2016 20:27:36 +0200 Subject: [PATCH 48/79] Build libjack2 for supercollider with same GCC Also remove trailing whitespace --- .../interpreters/supercollider/default.nix | 14 ++++++++------ pkgs/misc/jackaudio/default.nix | 4 ++-- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/pkgs/development/interpreters/supercollider/default.nix b/pkgs/development/interpreters/supercollider/default.nix index f44347c61b7..be85cd24815 100644 --- a/pkgs/development/interpreters/supercollider/default.nix +++ b/pkgs/development/interpreters/supercollider/default.nix @@ -3,10 +3,12 @@ , libXt, qt, readline , useSCEL ? false, emacs }: - -let optional = stdenv.lib.optional; in -stdenv.mkDerivation rec { +let optional = stdenv.lib.optional; +ljack2 = libjack2.override { gcc = gcc; }; +in + +stdenv.mkDerivation rec { name = "supercollider-3.6.6"; meta = { @@ -29,12 +31,12 @@ stdenv.mkDerivation rec { cmakeFlags = '' -DSC_WII=OFF - -DSC_EL=${if useSCEL then "ON" else "OFF"} + -DSC_EL=${if useSCEL then "ON" else "OFF"} ''; nativeBuildInputs = [ cmake pkgconfig ]; - buildInputs = [ - gcc libjack2 libsndfile fftw curl libXt qt readline ] + buildInputs = [ + gcc ljack2 libsndfile fftw curl libXt qt readline ] ++ optional useSCEL emacs; } diff --git a/pkgs/misc/jackaudio/default.nix b/pkgs/misc/jackaudio/default.nix index b5748c0f832..66be12fbc43 100644 --- a/pkgs/misc/jackaudio/default.nix +++ b/pkgs/misc/jackaudio/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, pkgconfig, python, makeWrapper -, bash, libsamplerate, libsndfile, readline +, bash, libsamplerate, libsndfile, readline, gcc # Optional Dependencies , dbus ? null, pythonDBus ? null, libffado ? null, alsaLib ? null @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ pkgconfig python makeWrapper ]; - buildInputs = [ + buildInputs = [ gcc python libsamplerate libsndfile readline From 8436458865aa6f41d06c8a5af38a85f0acc03246 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 6 Jul 2016 10:36:42 +0200 Subject: [PATCH 49/79] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v2.0-2-g0bc3d6d using the following inputs: - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/d6d83232276db2efedab449dabc84736457319de - LTS Haskell: https://github.com/fpco/lts-haskell/commit/52eeaf4edc30c81a4fbeddc7b7b01530052a1835 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/64dfa6aa2ef929d199ce31da6776e66289de76e1 --- .../haskell-modules/configuration-lts-0.0.nix | 4 + .../haskell-modules/configuration-lts-0.1.nix | 4 + .../haskell-modules/configuration-lts-0.2.nix | 4 + .../haskell-modules/configuration-lts-0.3.nix | 4 + .../haskell-modules/configuration-lts-0.4.nix | 4 + .../haskell-modules/configuration-lts-0.5.nix | 4 + .../haskell-modules/configuration-lts-0.6.nix | 4 + .../haskell-modules/configuration-lts-0.7.nix | 4 + .../haskell-modules/configuration-lts-1.0.nix | 4 + .../haskell-modules/configuration-lts-1.1.nix | 4 + .../configuration-lts-1.10.nix | 4 + .../configuration-lts-1.11.nix | 4 + .../configuration-lts-1.12.nix | 4 + .../configuration-lts-1.13.nix | 4 + .../configuration-lts-1.14.nix | 4 + .../configuration-lts-1.15.nix | 4 + .../haskell-modules/configuration-lts-1.2.nix | 4 + .../haskell-modules/configuration-lts-1.4.nix | 4 + .../haskell-modules/configuration-lts-1.5.nix | 4 + .../haskell-modules/configuration-lts-1.7.nix | 4 + .../haskell-modules/configuration-lts-1.8.nix | 4 + .../haskell-modules/configuration-lts-1.9.nix | 4 + .../haskell-modules/configuration-lts-2.0.nix | 4 + .../haskell-modules/configuration-lts-2.1.nix | 4 + .../configuration-lts-2.10.nix | 4 + .../configuration-lts-2.11.nix | 4 + .../configuration-lts-2.12.nix | 4 + .../configuration-lts-2.13.nix | 4 + .../configuration-lts-2.14.nix | 4 + .../configuration-lts-2.15.nix | 4 + .../configuration-lts-2.16.nix | 4 + .../configuration-lts-2.17.nix | 4 + .../configuration-lts-2.18.nix | 4 + .../configuration-lts-2.19.nix | 4 + .../haskell-modules/configuration-lts-2.2.nix | 4 + .../configuration-lts-2.20.nix | 4 + .../configuration-lts-2.21.nix | 4 + .../configuration-lts-2.22.nix | 4 + .../haskell-modules/configuration-lts-2.3.nix | 4 + .../haskell-modules/configuration-lts-2.4.nix | 4 + .../haskell-modules/configuration-lts-2.5.nix | 4 + .../haskell-modules/configuration-lts-2.6.nix | 4 + .../haskell-modules/configuration-lts-2.7.nix | 4 + .../haskell-modules/configuration-lts-2.8.nix | 4 + .../haskell-modules/configuration-lts-2.9.nix | 4 + .../haskell-modules/configuration-lts-3.0.nix | 6 + .../haskell-modules/configuration-lts-3.1.nix | 6 + .../configuration-lts-3.10.nix | 7 + .../configuration-lts-3.11.nix | 7 + .../configuration-lts-3.12.nix | 7 + .../configuration-lts-3.13.nix | 7 + .../configuration-lts-3.14.nix | 7 + .../configuration-lts-3.15.nix | 7 + .../configuration-lts-3.16.nix | 7 + .../configuration-lts-3.17.nix | 7 + .../configuration-lts-3.18.nix | 7 + .../configuration-lts-3.19.nix | 7 + .../haskell-modules/configuration-lts-3.2.nix | 6 + .../configuration-lts-3.20.nix | 7 + .../configuration-lts-3.21.nix | 8 + .../configuration-lts-3.22.nix | 8 + .../haskell-modules/configuration-lts-3.3.nix | 6 + .../haskell-modules/configuration-lts-3.4.nix | 6 + .../haskell-modules/configuration-lts-3.5.nix | 6 + .../haskell-modules/configuration-lts-3.6.nix | 6 + .../haskell-modules/configuration-lts-3.7.nix | 6 + .../haskell-modules/configuration-lts-3.8.nix | 6 + .../haskell-modules/configuration-lts-3.9.nix | 7 + .../haskell-modules/configuration-lts-4.0.nix | 8 + .../haskell-modules/configuration-lts-4.1.nix | 8 + .../haskell-modules/configuration-lts-4.2.nix | 8 + .../haskell-modules/configuration-lts-5.0.nix | 9 + .../haskell-modules/configuration-lts-5.1.nix | 9 + .../configuration-lts-5.10.nix | 10 + .../configuration-lts-5.11.nix | 10 + .../configuration-lts-5.12.nix | 10 + .../configuration-lts-5.13.nix | 11 + .../configuration-lts-5.14.nix | 11 + .../configuration-lts-5.15.nix | 11 + .../configuration-lts-5.16.nix | 11 + .../configuration-lts-5.17.nix | 11 + .../configuration-lts-5.18.nix | 11 + .../haskell-modules/configuration-lts-5.2.nix | 10 + .../haskell-modules/configuration-lts-5.3.nix | 10 + .../haskell-modules/configuration-lts-5.4.nix | 10 + .../haskell-modules/configuration-lts-5.5.nix | 10 + .../haskell-modules/configuration-lts-5.6.nix | 10 + .../haskell-modules/configuration-lts-5.7.nix | 10 + .../haskell-modules/configuration-lts-5.8.nix | 10 + .../haskell-modules/configuration-lts-5.9.nix | 10 + .../haskell-modules/configuration-lts-6.0.nix | 13 + .../haskell-modules/configuration-lts-6.1.nix | 15 + .../haskell-modules/configuration-lts-6.2.nix | 16 + .../haskell-modules/configuration-lts-6.3.nix | 17 + .../haskell-modules/configuration-lts-6.4.nix | 17 + .../haskell-modules/configuration-lts-6.5.nix | 17 + .../haskell-modules/configuration-lts-6.6.nix | 18 + .../haskell-modules/hackage-packages.nix | 729 +++++++++++++----- 98 files changed, 1204 insertions(+), 190 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 590b76b5ae0..0de5fc2f95f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -5101,6 +5101,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; @@ -5388,6 +5389,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7112,6 +7114,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8444,6 +8447,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_15"; "system-filepath" = doDistribute super."system-filepath_0_4_12"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index a7524970851..e9649ded74e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -5101,6 +5101,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; @@ -5388,6 +5389,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7112,6 +7114,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8444,6 +8447,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_15"; "system-filepath" = doDistribute super."system-filepath_0_4_12"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 6bb502e2d2d..ddd270cab51 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -5101,6 +5101,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; @@ -5388,6 +5389,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7112,6 +7114,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8444,6 +8447,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_15"; "system-filepath" = doDistribute super."system-filepath_0_4_12"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 5046049de44..ed01ed9ba0b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -5101,6 +5101,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; @@ -5388,6 +5389,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7112,6 +7114,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8444,6 +8447,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_15"; "system-filepath" = doDistribute super."system-filepath_0_4_12"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 5e0ea64d009..a7ba69d54ce 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -5099,6 +5099,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; @@ -5386,6 +5387,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7110,6 +7112,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8441,6 +8444,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16"; "system-filepath" = doDistribute super."system-filepath_0_4_13"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 031f0c6c856..40e2308969d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -5099,6 +5099,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; @@ -5386,6 +5387,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7110,6 +7112,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8441,6 +8444,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16"; "system-filepath" = doDistribute super."system-filepath_0_4_13"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 64066a0b528..fd306cd0a75 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -5097,6 +5097,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; @@ -5384,6 +5385,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7108,6 +7110,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8438,6 +8441,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16"; "system-filepath" = doDistribute super."system-filepath_0_4_13"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index e463801153b..6418e9b7209 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -5097,6 +5097,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; @@ -5384,6 +5385,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7108,6 +7110,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8438,6 +8441,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16"; "system-filepath" = doDistribute super."system-filepath_0_4_13"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 75a1000888a..ba011110146 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -5090,6 +5090,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; @@ -5377,6 +5378,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7101,6 +7103,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8429,6 +8432,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16"; "system-filepath" = doDistribute super."system-filepath_0_4_13_1"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index f23a4fb9482..cfe4e6c6171 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -5084,6 +5084,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; @@ -5371,6 +5372,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7094,6 +7096,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8420,6 +8423,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16"; "system-filepath" = doDistribute super."system-filepath_0_4_13_1"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 1cccadc95ec..bfe57849529 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -5068,6 +5068,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2"; @@ -5355,6 +5356,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7075,6 +7077,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8399,6 +8402,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16_1"; "system-filepath" = doDistribute super."system-filepath_0_4_13_2"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index d0aeca23fba..881dfeaa62e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -5066,6 +5066,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2"; @@ -5352,6 +5353,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7072,6 +7074,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8396,6 +8399,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16_1"; "system-filepath" = doDistribute super."system-filepath_0_4_13_2"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 70f2b5eb90c..9be52c89fe4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -5066,6 +5066,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5352,6 +5353,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7072,6 +7074,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8396,6 +8399,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16_1"; "system-filepath" = doDistribute super."system-filepath_0_4_13_2"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index c148a475d28..5c278cc91c0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -5065,6 +5065,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5351,6 +5352,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7071,6 +7073,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8395,6 +8398,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16_1"; "system-filepath" = doDistribute super."system-filepath_0_4_13_2"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 1543e1e1f53..b2682cb4f13 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -5062,6 +5062,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5348,6 +5349,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7068,6 +7070,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8391,6 +8394,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16_1"; "system-filepath" = doDistribute super."system-filepath_0_4_13_2"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 7bee95b1a11..bf8c9eb0b04 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -5059,6 +5059,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5345,6 +5346,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7063,6 +7065,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8384,6 +8387,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16_2"; "system-filepath" = doDistribute super."system-filepath_0_4_13_2"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index b5eeb56240c..05852c538a5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -5081,6 +5081,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4"; @@ -5368,6 +5369,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7090,6 +7092,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8415,6 +8418,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16"; "system-filepath" = doDistribute super."system-filepath_0_4_13_1"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 01ecfcea59c..2aef19ffcd2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -5078,6 +5078,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_1"; @@ -5365,6 +5366,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7086,6 +7088,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8411,6 +8414,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16"; "system-filepath" = doDistribute super."system-filepath_0_4_13_1"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 1f82e62c5d7..5a546217a35 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -5077,6 +5077,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_1"; @@ -5364,6 +5365,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7085,6 +7087,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8410,6 +8413,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16"; "system-filepath" = doDistribute super."system-filepath_0_4_13_1"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index aaf40fa4264..eb3a19da6a5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -5072,6 +5072,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2"; @@ -5359,6 +5360,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7080,6 +7082,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8405,6 +8408,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16"; "system-filepath" = doDistribute super."system-filepath_0_4_13_1"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 03ae781ccc9..456b208b980 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -5069,6 +5069,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2"; @@ -5356,6 +5357,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7076,6 +7078,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8401,6 +8404,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16"; "system-filepath" = doDistribute super."system-filepath_0_4_13_2"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 6b3e16f25de..a933be151b7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -5068,6 +5068,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2"; @@ -5355,6 +5356,7 @@ self: super: { "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; "json" = dontDistribute super."json"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7075,6 +7077,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8400,6 +8403,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16"; "system-filepath" = doDistribute super."system-filepath_0_4_13_2"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 5bcbdd5ffdb..d7bedfd0bc0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -5042,6 +5042,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5324,6 +5325,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7028,6 +7030,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8342,6 +8345,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16_2"; "system-filepath" = doDistribute super."system-filepath_0_4_13_2"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index b060c6e6634..31db8fe1440 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -5042,6 +5042,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5324,6 +5325,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7028,6 +7030,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8342,6 +8345,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16_2"; "system-filepath" = doDistribute super."system-filepath_0_4_13_2"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 6cec44e5d40..e98942f659b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -5026,6 +5026,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5306,6 +5307,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7008,6 +7010,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8311,6 +8314,7 @@ self: super: { "system-argv0" = dontDistribute super."system-argv0"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 7d1d92c6f52..c8ae32d7c38 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -5025,6 +5025,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5305,6 +5306,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7006,6 +7008,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8307,6 +8310,7 @@ self: super: { "system-argv0" = dontDistribute super."system-argv0"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index c8ed26f3045..6750cb2d5d1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -5025,6 +5025,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5305,6 +5306,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7006,6 +7008,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8306,6 +8309,7 @@ self: super: { "system-argv0" = dontDistribute super."system-argv0"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index a69b62f84f7..61125b12723 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -5025,6 +5025,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5304,6 +5305,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7005,6 +7007,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8305,6 +8308,7 @@ self: super: { "system-argv0" = dontDistribute super."system-argv0"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 2235602b613..d8cf7ce903f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -5023,6 +5023,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5302,6 +5303,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7003,6 +7005,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8303,6 +8306,7 @@ self: super: { "system-argv0" = dontDistribute super."system-argv0"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index b16192762e2..b5ac5df9262 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -5022,6 +5022,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5301,6 +5302,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7001,6 +7003,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8300,6 +8303,7 @@ self: super: { "system-argv0" = dontDistribute super."system-argv0"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 02c470ec797..d1cefdb9f1a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -5019,6 +5019,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5298,6 +5299,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6997,6 +6999,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8296,6 +8299,7 @@ self: super: { "system-argv0" = dontDistribute super."system-argv0"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 90776befb76..62817592f11 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -5016,6 +5016,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5295,6 +5296,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6993,6 +6995,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8292,6 +8295,7 @@ self: super: { "system-argv0" = dontDistribute super."system-argv0"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 464bf649b25..12e7a63a99c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -5014,6 +5014,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5293,6 +5294,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6990,6 +6992,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8289,6 +8292,7 @@ self: super: { "system-argv0" = dontDistribute super."system-argv0"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index a0ad91be41a..c76562a5ae9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -5013,6 +5013,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5292,6 +5293,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6989,6 +6991,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8288,6 +8291,7 @@ self: super: { "system-argv0" = dontDistribute super."system-argv0"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 25c43cfd7d4..540f6a33be0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -5040,6 +5040,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5322,6 +5323,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7026,6 +7028,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8340,6 +8343,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16_2"; "system-filepath" = doDistribute super."system-filepath_0_4_13_2"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 177dd13e9e7..ee32b47ad0b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -5013,6 +5013,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5292,6 +5293,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6989,6 +6991,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8287,6 +8290,7 @@ self: super: { "system-argv0" = dontDistribute super."system-argv0"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 3419fd18d01..744ce37cb1d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -5013,6 +5013,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5292,6 +5293,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6988,6 +6990,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8286,6 +8289,7 @@ self: super: { "system-argv0" = dontDistribute super."system-argv0"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 57a76f05f2e..1ca17474a51 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -5012,6 +5012,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5291,6 +5292,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6987,6 +6989,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8285,6 +8288,7 @@ self: super: { "system-argv0" = dontDistribute super."system-argv0"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index bba4a81b515..65521fa360c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -5038,6 +5038,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5320,6 +5321,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7024,6 +7026,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8338,6 +8341,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16_2"; "system-filepath" = doDistribute super."system-filepath_0_4_13_2"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 8988afda5f7..589429db307 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -5038,6 +5038,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5320,6 +5321,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7023,6 +7025,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8336,6 +8339,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16_2"; "system-filepath" = doDistribute super."system-filepath_0_4_13_2"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 7c0907ed947..e70c6e29102 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -5037,6 +5037,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5319,6 +5320,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7022,6 +7024,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8335,6 +8338,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16_2"; "system-filepath" = doDistribute super."system-filepath_0_4_13_3"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 51ef80a6efe..4bce5603ac1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -5034,6 +5034,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5316,6 +5317,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7018,6 +7020,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8331,6 +8334,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16_2"; "system-filepath" = doDistribute super."system-filepath_0_4_13_3"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index f0369c778ea..96b0b5cc31a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -5034,6 +5034,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5316,6 +5317,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7019,6 +7021,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8332,6 +8335,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16_2"; "system-filepath" = doDistribute super."system-filepath_0_4_13_3"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 6bd3dfc2b4b..e3f56a38ef6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -5032,6 +5032,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5314,6 +5315,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7017,6 +7019,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8326,6 +8329,7 @@ self: super: { "system-fileio" = doDistribute super."system-fileio_0_3_16_2"; "system-filepath" = doDistribute super."system-filepath_0_4_13_3"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 2bfc3586000..2e5c024af52 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -5027,6 +5027,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = dontDistribute super."hyperloglog"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hyphenation" = doDistribute super."hyphenation_0_4_2_1"; @@ -5309,6 +5310,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -7011,6 +7013,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8316,6 +8319,7 @@ self: super: { "system-argv0" = dontDistribute super."system-argv0"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 9427fa39209..785f9b4bbf0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -2739,6 +2739,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4923,6 +4924,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5191,6 +5193,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6852,6 +6855,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8136,6 +8140,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8419,6 +8424,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 904fd94fc65..e2804c9e689 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -2738,6 +2738,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4921,6 +4922,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5189,6 +5191,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6848,6 +6851,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8131,6 +8135,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8414,6 +8419,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 5cb025f8104..823b01c4c89 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -634,6 +634,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2728,6 +2729,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4901,6 +4903,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5167,6 +5170,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6817,6 +6821,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8095,6 +8100,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8374,6 +8380,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index c929ba49160..793438b4421 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -634,6 +634,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2728,6 +2729,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4900,6 +4902,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5166,6 +5169,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6816,6 +6820,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8094,6 +8099,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8373,6 +8379,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 08795bfbc24..d4c3a236f10 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -634,6 +634,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2727,6 +2728,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4898,6 +4900,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5164,6 +5167,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6813,6 +6817,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8091,6 +8096,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8369,6 +8375,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 50446244b5d..5ae2df82cb5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -634,6 +634,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2727,6 +2728,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4897,6 +4899,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5163,6 +5166,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6810,6 +6814,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8088,6 +8093,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8366,6 +8372,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index a5f1113b626..c60052a30e0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -634,6 +634,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2727,6 +2728,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4896,6 +4898,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5162,6 +5165,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6809,6 +6813,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8087,6 +8092,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8365,6 +8371,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 5f227deb7cd..4cf545c43ad 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -634,6 +634,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2727,6 +2728,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4894,6 +4896,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5160,6 +5163,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6807,6 +6811,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8084,6 +8089,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8362,6 +8368,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 425581d5e20..bcb89836ada 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -634,6 +634,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2726,6 +2727,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4893,6 +4895,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5159,6 +5162,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6803,6 +6807,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8079,6 +8084,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8355,6 +8361,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index c8cdc255f06..30e57374bbf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -634,6 +634,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2725,6 +2726,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4891,6 +4893,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5156,6 +5159,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6798,6 +6802,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8074,6 +8079,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8350,6 +8356,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index aaac289f465..dc397c22a69 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -634,6 +634,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2725,6 +2726,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4891,6 +4893,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5156,6 +5159,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6798,6 +6802,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8074,6 +8079,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8350,6 +8356,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 1a3247bd786..2a4d29f3616 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -634,6 +634,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2722,6 +2723,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4886,6 +4888,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5151,6 +5154,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6791,6 +6795,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8066,6 +8071,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8342,6 +8348,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 6106d0f98ed..773c5b19847 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -2736,6 +2736,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4917,6 +4918,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5185,6 +5187,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6844,6 +6847,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8125,6 +8129,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8408,6 +8413,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index b823d7a30fb..7dc6e7e26e7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -633,6 +633,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2721,6 +2722,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4885,6 +4887,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5150,6 +5153,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6790,6 +6794,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8063,6 +8068,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8339,6 +8345,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index 4ae28afe50f..c0cdf4eee8d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -633,6 +633,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2720,6 +2721,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4882,6 +4884,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5145,6 +5148,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6784,6 +6788,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -7179,6 +7184,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_36_0_6"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; @@ -8052,6 +8058,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8328,6 +8335,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index cfdecf26dcd..0c9103e4e02 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -633,6 +633,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2720,6 +2721,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4881,6 +4883,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5142,6 +5145,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6781,6 +6785,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -7176,6 +7181,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_36_0_6"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; @@ -8049,6 +8055,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8325,6 +8332,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 9d7ba709a60..752235c5ef5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -2736,6 +2736,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4915,6 +4916,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5183,6 +5185,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6842,6 +6845,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8122,6 +8126,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8405,6 +8410,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 52d5e088c3a..67eebd091a2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -2736,6 +2736,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4915,6 +4916,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5183,6 +5185,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6842,6 +6845,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8121,6 +8125,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8404,6 +8409,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index edbaf64de19..5c07986528d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -2735,6 +2735,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4912,6 +4913,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5178,6 +5180,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6835,6 +6838,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8114,6 +8118,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8394,6 +8399,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index aa4204c9a8d..80403083c0e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -2735,6 +2735,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4910,6 +4911,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5176,6 +5178,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6831,6 +6834,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8110,6 +8114,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8390,6 +8395,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 4825fb5ca7f..34365164da1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -2733,6 +2733,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4907,6 +4908,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5173,6 +5175,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6826,6 +6829,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8104,6 +8108,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8384,6 +8389,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 305ef928998..d9658f630df 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -2730,6 +2730,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4904,6 +4905,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5170,6 +5172,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6822,6 +6825,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8100,6 +8104,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8379,6 +8384,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 2c8e0d86108..9ed248935ac 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -634,6 +634,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2728,6 +2729,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_0_13_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4901,6 +4903,7 @@ self: super: { "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; "hyperloglog" = doDistribute super."hyperloglog_0_3_4"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5167,6 +5170,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6819,6 +6823,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -8097,6 +8102,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8376,6 +8382,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 1caea509bd7..dbbbc48b70e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -624,6 +624,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2682,6 +2683,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4804,6 +4806,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5058,6 +5061,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6657,6 +6661,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -7040,6 +7045,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7902,6 +7908,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8171,6 +8178,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index b4d3c0b0f32..7186b056ce1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -624,6 +624,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2681,6 +2682,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4801,6 +4803,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5051,6 +5054,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6648,6 +6652,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -7031,6 +7036,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7893,6 +7899,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8162,6 +8169,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 27e9b990f72..14092ca4534 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -624,6 +624,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2677,6 +2678,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4787,6 +4789,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5035,6 +5038,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6627,6 +6631,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -7008,6 +7013,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7865,6 +7871,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8134,6 +8141,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index eb84fca3b25..4d06b5e2d35 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -620,6 +620,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2340,6 +2341,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2659,6 +2661,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4754,6 +4757,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -5002,6 +5006,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6585,6 +6590,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6961,6 +6967,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7811,6 +7818,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8076,6 +8084,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 552bb4a60a2..62fd0637274 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -619,6 +619,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2336,6 +2337,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2655,6 +2657,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4750,6 +4753,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4997,6 +5001,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -6579,6 +6584,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6954,6 +6960,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7_1"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7804,6 +7811,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8069,6 +8077,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index 512ddf032a1..216517197f3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -615,6 +615,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2321,6 +2322,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2635,6 +2637,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4708,6 +4711,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4950,6 +4954,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5615,6 +5620,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6506,6 +6512,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6878,6 +6885,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7721,6 +7729,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7984,6 +7993,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index faa736236cb..4fa9c249adb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -614,6 +614,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2318,6 +2319,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2632,6 +2634,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4699,6 +4702,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4941,6 +4945,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5606,6 +5611,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6496,6 +6502,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6868,6 +6875,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7711,6 +7719,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7973,6 +7982,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index 9d31452da94..0449f630810 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -613,6 +613,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2317,6 +2318,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2631,6 +2633,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4695,6 +4698,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4937,6 +4941,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5598,6 +5603,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6487,6 +6493,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6859,6 +6866,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7701,6 +7709,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7963,6 +7972,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index 272b93b2957..a66652715c3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -613,6 +613,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -1428,6 +1429,7 @@ self: super: { "augur" = dontDistribute super."augur"; "aur" = dontDistribute super."aur"; "aur-api" = dontDistribute super."aur-api"; + "authenticate" = doDistribute super."authenticate_1_3_3_1"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; @@ -2312,6 +2314,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2626,6 +2629,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4690,6 +4694,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4931,6 +4936,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5591,6 +5597,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6479,6 +6486,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6851,6 +6859,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7693,6 +7702,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7955,6 +7965,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix index 31b38eaa3d1..f353a00b1d1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -612,6 +612,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -1424,6 +1425,7 @@ self: super: { "augur" = dontDistribute super."augur"; "aur" = dontDistribute super."aur"; "aur-api" = dontDistribute super."aur-api"; + "authenticate" = doDistribute super."authenticate_1_3_3_1"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; @@ -2303,6 +2305,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2617,6 +2620,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4678,6 +4682,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4919,6 +4924,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5577,6 +5583,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6464,6 +6471,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6835,6 +6843,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7677,6 +7686,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7937,6 +7947,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix index 59adf054384..9ec24560413 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -611,6 +611,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -1423,6 +1424,7 @@ self: super: { "augur" = dontDistribute super."augur"; "aur" = dontDistribute super."aur"; "aur-api" = dontDistribute super."aur-api"; + "authenticate" = doDistribute super."authenticate_1_3_3_1"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; @@ -2301,6 +2303,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2614,6 +2617,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4671,6 +4675,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4912,6 +4917,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5569,6 +5575,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6454,6 +6461,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6825,6 +6833,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7667,6 +7676,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7926,6 +7936,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.16.nix b/pkgs/development/haskell-modules/configuration-lts-5.16.nix index 2a6f50f2ed6..fe35f1a0153 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.16.nix @@ -610,6 +610,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -1420,6 +1421,7 @@ self: super: { "augur" = dontDistribute super."augur"; "aur" = dontDistribute super."aur"; "aur-api" = dontDistribute super."aur-api"; + "authenticate" = doDistribute super."authenticate_1_3_3_1"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; @@ -2292,6 +2294,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2605,6 +2608,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4659,6 +4663,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4900,6 +4905,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5554,6 +5560,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6436,6 +6443,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6805,6 +6813,7 @@ self: super: { "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7640,6 +7649,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7896,6 +7906,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.17.nix b/pkgs/development/haskell-modules/configuration-lts-5.17.nix index d7bc1d7e7d1..5d26d4a8c6e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.17.nix @@ -608,6 +608,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -1418,6 +1419,7 @@ self: super: { "augur" = dontDistribute super."augur"; "aur" = dontDistribute super."aur"; "aur-api" = dontDistribute super."aur-api"; + "authenticate" = doDistribute super."authenticate_1_3_3_1"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; @@ -2289,6 +2291,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2602,6 +2605,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4656,6 +4660,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4897,6 +4902,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5550,6 +5556,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6430,6 +6437,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6798,6 +6806,7 @@ self: super: { "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7632,6 +7641,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7888,6 +7898,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.18.nix b/pkgs/development/haskell-modules/configuration-lts-5.18.nix index da8a5cc8bd5..edb76237951 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.18.nix @@ -607,6 +607,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -1417,6 +1418,7 @@ self: super: { "augur" = dontDistribute super."augur"; "aur" = dontDistribute super."aur"; "aur-api" = dontDistribute super."aur-api"; + "authenticate" = doDistribute super."authenticate_1_3_3_1"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; @@ -2286,6 +2288,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2596,6 +2599,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; "dingo-core" = dontDistribute super."dingo-core"; @@ -4643,6 +4647,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4883,6 +4888,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5536,6 +5542,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6410,6 +6417,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6778,6 +6786,7 @@ self: super: { "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7612,6 +7621,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7867,6 +7877,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index e2a3e04cc10..e9c764e7f8e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -619,6 +619,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2336,6 +2337,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2655,6 +2657,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4744,6 +4747,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4990,6 +4994,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5665,6 +5670,7 @@ self: super: { "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6567,6 +6573,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6941,6 +6948,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7_1"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7789,6 +7797,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8054,6 +8063,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index 2bb98ca8063..80bf104ea44 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -618,6 +618,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2334,6 +2335,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2651,6 +2653,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4735,6 +4738,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4980,6 +4984,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5653,6 +5658,7 @@ self: super: { "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6554,6 +6560,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6926,6 +6933,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7_1"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7772,6 +7780,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8037,6 +8046,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index 59972fbb215..d17565f14a8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -617,6 +617,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2331,6 +2332,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2646,6 +2648,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4727,6 +4730,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4972,6 +4976,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5644,6 +5649,7 @@ self: super: { "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6541,6 +6547,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6913,6 +6920,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7_2"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7759,6 +7767,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8023,6 +8032,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 559688f81b1..1e2bdb39d05 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -617,6 +617,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2330,6 +2331,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2645,6 +2647,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4725,6 +4728,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4970,6 +4974,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5642,6 +5647,7 @@ self: super: { "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6539,6 +6545,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6911,6 +6918,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7_2"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7757,6 +7765,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8021,6 +8030,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index d59f03a2cde..5b23bea6a10 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -616,6 +616,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2328,6 +2329,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2643,6 +2645,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4720,6 +4723,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4965,6 +4969,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5635,6 +5640,7 @@ self: super: { "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6530,6 +6536,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6902,6 +6909,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7748,6 +7756,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8012,6 +8021,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index 3ec57e8884f..77883246470 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -616,6 +616,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2325,6 +2326,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2640,6 +2642,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4716,6 +4719,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4961,6 +4965,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5630,6 +5635,7 @@ self: super: { "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6525,6 +6531,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6897,6 +6904,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7743,6 +7751,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8007,6 +8016,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index e03a1f518cb..a5a4a2e7bed 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -616,6 +616,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2325,6 +2326,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2640,6 +2642,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4716,6 +4719,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4961,6 +4965,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5630,6 +5635,7 @@ self: super: { "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6525,6 +6531,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6897,6 +6904,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7743,6 +7751,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -8007,6 +8016,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index ded4fc8b6bf..2e2c7266d00 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -616,6 +616,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -2323,6 +2324,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2637,6 +2639,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional" = doDistribute super."dimensional_1_0_1_1"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; @@ -4712,6 +4715,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4954,6 +4958,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5623,6 +5628,7 @@ self: super: { "mockery" = doDistribute super."mockery_0_3_2"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6515,6 +6521,7 @@ self: super: { "process-qq" = dontDistribute super."process-qq"; "process-streaming" = dontDistribute super."process-streaming"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6887,6 +6894,7 @@ self: super: { "resource-simple" = dontDistribute super."resource-simple"; "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; @@ -7730,6 +7738,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7993,6 +8002,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.0.nix b/pkgs/development/haskell-modules/configuration-lts-6.0.nix index a377401c0ed..94bb9acdb21 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.0.nix @@ -604,6 +604,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -750,6 +751,7 @@ self: super: { "Plural" = dontDistribute super."Plural"; "Pollutocracy" = dontDistribute super."Pollutocracy"; "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = doDistribute super."PortMidi_0_1_6_0"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; @@ -1396,6 +1398,7 @@ self: super: { "augur" = dontDistribute super."augur"; "aur" = dontDistribute super."aur"; "aur-api" = dontDistribute super."aur-api"; + "authenticate" = doDistribute super."authenticate_1_3_3_1"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; @@ -2240,6 +2243,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; @@ -2544,6 +2548,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; "dingo-core" = dontDistribute super."dingo-core"; @@ -4524,6 +4529,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4761,6 +4767,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5392,6 +5399,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6245,6 +6253,7 @@ self: super: { "process-progress" = dontDistribute super."process-progress"; "process-qq" = dontDistribute super."process-qq"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6600,6 +6609,7 @@ self: super: { "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-example" = dontDistribute super."rest-example"; "rest-types" = doDistribute super."rest-types_1_14_0_1"; "restful-snap" = dontDistribute super."restful-snap"; @@ -7396,6 +7406,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7645,6 +7656,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; @@ -8213,6 +8225,7 @@ self: super: { "wumpus-drawing" = dontDistribute super."wumpus-drawing"; "wumpus-microprint" = dontDistribute super."wumpus-microprint"; "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = doDistribute super."wuss_1_0_4"; "wx" = dontDistribute super."wx"; "wxAsteroids" = dontDistribute super."wxAsteroids"; "wxFruit" = dontDistribute super."wxFruit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.1.nix b/pkgs/development/haskell-modules/configuration-lts-6.1.nix index 02a97715946..d5032927ded 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.1.nix @@ -604,6 +604,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -748,6 +749,7 @@ self: super: { "Plural" = dontDistribute super."Plural"; "Pollutocracy" = dontDistribute super."Pollutocracy"; "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = doDistribute super."PortMidi_0_1_6_0"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; @@ -1393,6 +1395,7 @@ self: super: { "augur" = dontDistribute super."augur"; "aur" = dontDistribute super."aur"; "aur-api" = dontDistribute super."aur-api"; + "authenticate" = doDistribute super."authenticate_1_3_3_1"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; @@ -2228,6 +2231,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; @@ -2530,6 +2534,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; "dingo-core" = dontDistribute super."dingo-core"; @@ -4488,6 +4493,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4722,6 +4728,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5348,6 +5355,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6160,6 +6168,7 @@ self: super: { "pretty-compact" = dontDistribute super."pretty-compact"; "pretty-error" = dontDistribute super."pretty-error"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_10"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6188,6 +6197,7 @@ self: super: { "process-progress" = dontDistribute super."process-progress"; "process-qq" = dontDistribute super."process-qq"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6540,7 +6550,9 @@ self: super: { "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-example" = dontDistribute super."rest-example"; + "rest-types" = doDistribute super."rest-types_1_14_1"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -7332,6 +7344,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7579,6 +7592,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; @@ -8139,6 +8153,7 @@ self: super: { "wumpus-drawing" = dontDistribute super."wumpus-drawing"; "wumpus-microprint" = dontDistribute super."wumpus-microprint"; "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = doDistribute super."wuss_1_0_4"; "wx" = dontDistribute super."wx"; "wxAsteroids" = dontDistribute super."wxAsteroids"; "wxFruit" = dontDistribute super."wxFruit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.2.nix b/pkgs/development/haskell-modules/configuration-lts-6.2.nix index 313369cb085..745d629e695 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.2.nix @@ -600,6 +600,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -744,6 +745,7 @@ self: super: { "Plural" = dontDistribute super."Plural"; "Pollutocracy" = dontDistribute super."Pollutocracy"; "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = doDistribute super."PortMidi_0_1_6_0"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; @@ -1385,6 +1387,7 @@ self: super: { "augur" = dontDistribute super."augur"; "aur" = dontDistribute super."aur"; "aur-api" = dontDistribute super."aur-api"; + "authenticate" = doDistribute super."authenticate_1_3_3_1"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; @@ -1519,6 +1522,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_1"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_4_0"; "binary-protocol" = dontDistribute super."binary-protocol"; @@ -2216,6 +2220,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; @@ -2518,6 +2523,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; "dingo-core" = dontDistribute super."dingo-core"; @@ -4464,6 +4470,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4697,6 +4704,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5321,6 +5329,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6126,6 +6135,7 @@ self: super: { "pretty-compact" = dontDistribute super."pretty-compact"; "pretty-error" = dontDistribute super."pretty-error"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_10"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6154,6 +6164,7 @@ self: super: { "process-progress" = dontDistribute super."process-progress"; "process-qq" = dontDistribute super."process-qq"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6503,7 +6514,9 @@ self: super: { "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-example" = dontDistribute super."rest-example"; + "rest-types" = doDistribute super."rest-types_1_14_1"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -7288,6 +7301,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7534,6 +7548,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; @@ -8090,6 +8105,7 @@ self: super: { "wumpus-drawing" = dontDistribute super."wumpus-drawing"; "wumpus-microprint" = dontDistribute super."wumpus-microprint"; "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = doDistribute super."wuss_1_0_4"; "wx" = dontDistribute super."wx"; "wxAsteroids" = dontDistribute super."wxAsteroids"; "wxFruit" = dontDistribute super."wxFruit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.3.nix b/pkgs/development/haskell-modules/configuration-lts-6.3.nix index 4b4311318b6..b2012886939 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.3.nix @@ -599,6 +599,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -743,6 +744,7 @@ self: super: { "Plural" = dontDistribute super."Plural"; "Pollutocracy" = dontDistribute super."Pollutocracy"; "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = doDistribute super."PortMidi_0_1_6_0"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; @@ -1308,6 +1310,7 @@ self: super: { "augur" = dontDistribute super."augur"; "aur" = dontDistribute super."aur"; "aur-api" = dontDistribute super."aur-api"; + "authenticate" = doDistribute super."authenticate_1_3_3_1"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; @@ -1441,6 +1444,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_1"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_4_0"; "binary-protocol" = dontDistribute super."binary-protocol"; @@ -2129,6 +2133,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; @@ -2425,6 +2430,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; "dingo-core" = dontDistribute super."dingo-core"; @@ -4358,6 +4364,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4589,6 +4596,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5211,6 +5219,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -6009,6 +6018,7 @@ self: super: { "pretty-compact" = dontDistribute super."pretty-compact"; "pretty-error" = dontDistribute super."pretty-error"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_10"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6037,6 +6047,7 @@ self: super: { "process-progress" = dontDistribute super."process-progress"; "process-qq" = dontDistribute super."process-qq"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6384,7 +6395,9 @@ self: super: { "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-example" = dontDistribute super."rest-example"; + "rest-types" = doDistribute super."rest-types_1_14_1"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -7165,6 +7178,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7335,6 +7349,7 @@ self: super: { "th-instances" = dontDistribute super."th-instances"; "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = doDistribute super."th-lift-instances_0_1_8"; "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-compat" = dontDistribute super."th-reify-compat"; @@ -7407,6 +7422,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; @@ -7955,6 +7971,7 @@ self: super: { "wumpus-drawing" = dontDistribute super."wumpus-drawing"; "wumpus-microprint" = dontDistribute super."wumpus-microprint"; "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = doDistribute super."wuss_1_0_4"; "wx" = dontDistribute super."wx"; "wxAsteroids" = dontDistribute super."wxAsteroids"; "wxFruit" = dontDistribute super."wxFruit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.4.nix b/pkgs/development/haskell-modules/configuration-lts-6.4.nix index c3e2da5ab55..10a4c6a780b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.4.nix @@ -597,6 +597,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -741,6 +742,7 @@ self: super: { "Plural" = dontDistribute super."Plural"; "Pollutocracy" = dontDistribute super."Pollutocracy"; "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = doDistribute super."PortMidi_0_1_6_0"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; @@ -1306,6 +1308,7 @@ self: super: { "augur" = dontDistribute super."augur"; "aur" = dontDistribute super."aur"; "aur-api" = dontDistribute super."aur-api"; + "authenticate" = doDistribute super."authenticate_1_3_3_1"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; @@ -1438,6 +1441,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_1"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_4_0"; "binary-protocol" = dontDistribute super."binary-protocol"; @@ -2125,6 +2129,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; @@ -2417,6 +2422,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; "dingo-core" = dontDistribute super."dingo-core"; @@ -4343,6 +4349,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4574,6 +4581,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5195,6 +5203,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5987,6 +5996,7 @@ self: super: { "pretty-compact" = dontDistribute super."pretty-compact"; "pretty-error" = dontDistribute super."pretty-error"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_10"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6015,6 +6025,7 @@ self: super: { "process-progress" = dontDistribute super."process-progress"; "process-qq" = dontDistribute super."process-qq"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6358,7 +6369,9 @@ self: super: { "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-example" = dontDistribute super."rest-example"; + "rest-types" = doDistribute super."rest-types_1_14_1"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -7135,6 +7148,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7304,6 +7318,7 @@ self: super: { "th-instances" = dontDistribute super."th-instances"; "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = doDistribute super."th-lift-instances_0_1_8"; "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-compat" = doDistribute super."th-reify-compat_0_0_1_0"; @@ -7376,6 +7391,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; @@ -7922,6 +7938,7 @@ self: super: { "wumpus-drawing" = dontDistribute super."wumpus-drawing"; "wumpus-microprint" = dontDistribute super."wumpus-microprint"; "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = doDistribute super."wuss_1_0_4"; "wx" = dontDistribute super."wx"; "wxAsteroids" = dontDistribute super."wxAsteroids"; "wxFruit" = dontDistribute super."wxFruit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.5.nix b/pkgs/development/haskell-modules/configuration-lts-6.5.nix index 649e719a019..ea5bde113e9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.5.nix @@ -595,6 +595,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -739,6 +740,7 @@ self: super: { "Plural" = dontDistribute super."Plural"; "Pollutocracy" = dontDistribute super."Pollutocracy"; "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = doDistribute super."PortMidi_0_1_6_0"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; @@ -1303,6 +1305,7 @@ self: super: { "augur" = dontDistribute super."augur"; "aur" = dontDistribute super."aur"; "aur-api" = dontDistribute super."aur-api"; + "authenticate" = doDistribute super."authenticate_1_3_3_1"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; @@ -1434,6 +1437,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_1"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_4_0"; "binary-protocol" = dontDistribute super."binary-protocol"; @@ -2118,6 +2122,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; @@ -2409,6 +2414,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; "dingo-core" = dontDistribute super."dingo-core"; @@ -4331,6 +4337,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4561,6 +4568,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5179,6 +5187,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5966,6 +5975,7 @@ self: super: { "pretty-compact" = dontDistribute super."pretty-compact"; "pretty-error" = dontDistribute super."pretty-error"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_10"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -5994,6 +6004,7 @@ self: super: { "process-progress" = dontDistribute super."process-progress"; "process-qq" = dontDistribute super."process-qq"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6332,7 +6343,9 @@ self: super: { "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-example" = dontDistribute super."rest-example"; + "rest-types" = doDistribute super."rest-types_1_14_1"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -7103,6 +7116,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7268,6 +7282,7 @@ self: super: { "th-instances" = dontDistribute super."th-instances"; "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = doDistribute super."th-lift-instances_0_1_8"; "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7338,6 +7353,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; @@ -7880,6 +7896,7 @@ self: super: { "wumpus-drawing" = dontDistribute super."wumpus-drawing"; "wumpus-microprint" = dontDistribute super."wumpus-microprint"; "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = doDistribute super."wuss_1_0_4"; "wx" = dontDistribute super."wx"; "wxAsteroids" = dontDistribute super."wxAsteroids"; "wxFruit" = dontDistribute super."wxFruit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.6.nix b/pkgs/development/haskell-modules/configuration-lts-6.6.nix index fc0084517c5..e90a3c848dc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.6.nix @@ -592,6 +592,7 @@ self: super: { "LinearSplit" = dontDistribute super."LinearSplit"; "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; "LinkChecker" = dontDistribute super."LinkChecker"; + "ListLike" = doDistribute super."ListLike_4_2_1"; "ListTree" = dontDistribute super."ListTree"; "ListWriter" = dontDistribute super."ListWriter"; "ListZipper" = dontDistribute super."ListZipper"; @@ -736,6 +737,7 @@ self: super: { "Plural" = dontDistribute super."Plural"; "Pollutocracy" = dontDistribute super."Pollutocracy"; "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = doDistribute super."PortMidi_0_1_6_0"; "PostgreSQL" = dontDistribute super."PostgreSQL"; "PrimitiveArray" = dontDistribute super."PrimitiveArray"; "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; @@ -1299,6 +1301,7 @@ self: super: { "augur" = dontDistribute super."augur"; "aur" = dontDistribute super."aur"; "aur-api" = dontDistribute super."aur-api"; + "authenticate" = doDistribute super."authenticate_1_3_3_1"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; "authinfo-hs" = dontDistribute super."authinfo-hs"; @@ -1342,6 +1345,7 @@ self: super: { "azure-servicebus" = dontDistribute super."azure-servicebus"; "azurify" = dontDistribute super."azurify"; "b-tree" = dontDistribute super."b-tree"; + "b9" = doDistribute super."b9_0_5_20"; "babylon" = dontDistribute super."babylon"; "backdropper" = dontDistribute super."backdropper"; "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; @@ -1429,6 +1433,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_1"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2112,6 +2117,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptol" = doDistribute super."cryptol_2_3_0"; "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; @@ -2403,6 +2409,7 @@ self: super: { "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; "digit" = dontDistribute super."digit"; "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "digits" = doDistribute super."digits_0_2"; "dimensional-codata" = dontDistribute super."dimensional-codata"; "dimensional-tf" = dontDistribute super."dimensional-tf"; "dingo-core" = dontDistribute super."dingo-core"; @@ -4323,6 +4330,7 @@ self: super: { "hyloutils" = dontDistribute super."hyloutils"; "hyperdrive" = dontDistribute super."hyperdrive"; "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperloglogplus" = dontDistribute super."hyperloglogplus"; "hyperpublic" = dontDistribute super."hyperpublic"; "hyphenate" = dontDistribute super."hyphenate"; "hypher" = dontDistribute super."hypher"; @@ -4553,6 +4561,7 @@ self: super: { "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; + "json-api" = dontDistribute super."json-api"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; @@ -5167,6 +5176,7 @@ self: super: { "moan" = dontDistribute super."moan"; "modbus-tcp" = dontDistribute super."modbus-tcp"; "modelicaparser" = dontDistribute super."modelicaparser"; + "modify-fasta" = doDistribute super."modify-fasta_0_8_1_3"; "modsplit" = dontDistribute super."modsplit"; "modular-arithmetic" = dontDistribute super."modular-arithmetic"; "modular-prelude" = dontDistribute super."modular-prelude"; @@ -5952,6 +5962,7 @@ self: super: { "pretty-compact" = dontDistribute super."pretty-compact"; "pretty-error" = dontDistribute super."pretty-error"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_10"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -5980,6 +5991,7 @@ self: super: { "process-progress" = dontDistribute super."process-progress"; "process-qq" = dontDistribute super."process-qq"; "processing" = dontDistribute super."processing"; + "processing-for-haskell" = dontDistribute super."processing-for-haskell"; "processor-creative-kit" = dontDistribute super."processor-creative-kit"; "procrastinating-structure" = dontDistribute super."procrastinating-structure"; "procrastinating-variable" = dontDistribute super."procrastinating-variable"; @@ -6317,7 +6329,9 @@ self: super: { "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; "respond" = dontDistribute super."respond"; + "rest-client" = doDistribute super."rest-client_0_5_1_0"; "rest-example" = dontDistribute super."rest-example"; + "rest-types" = doDistribute super."rest-types_1_14_1"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; @@ -7085,6 +7099,7 @@ self: super: { "system-canonicalpath" = dontDistribute super."system-canonicalpath"; "system-command" = dontDistribute super."system-command"; "system-gpio" = dontDistribute super."system-gpio"; + "system-info" = dontDistribute super."system-info"; "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; @@ -7250,6 +7265,7 @@ self: super: { "th-instances" = dontDistribute super."th-instances"; "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = doDistribute super."th-lift-instances_0_1_8"; "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7320,6 +7336,7 @@ self: super: { "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; "timeprint" = dontDistribute super."timeprint"; + "timerep" = doDistribute super."timerep_2_0_0_1"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; @@ -7860,6 +7877,7 @@ self: super: { "wumpus-drawing" = dontDistribute super."wumpus-drawing"; "wumpus-microprint" = dontDistribute super."wumpus-microprint"; "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = doDistribute super."wuss_1_0_4"; "wx" = dontDistribute super."wx"; "wxAsteroids" = dontDistribute super."wxAsteroids"; "wxFruit" = dontDistribute super."wxFruit"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index f8b1acc71fc..de8865e3282 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -3279,8 +3279,8 @@ self: { }: mkDerivation { pname = "Chart"; - version = "1.7.1"; - sha256 = "068e8ec72dbc3bb7ddaca052729cb0a187df6d3828978966b1c15c8ac36be610"; + version = "1.8"; + sha256 = "7181289529ba96df4946c2e9018cabf3d8566da1a11a2a7e0f0eb8c39e9e70dc"; libraryHaskellDepends = [ array base colour data-default-class lens mtl old-locale operational time vector @@ -3353,8 +3353,8 @@ self: { }: mkDerivation { pname = "Chart-cairo"; - version = "1.7.1"; - sha256 = "3f3cffb7b971b45b0ace2c45f2916df1fc9b5473b49c4f0fc86937802790fe01"; + version = "1.8"; + sha256 = "05cf006424750562dc786cc5eb169474759932c05da6ec08a44b932b72b620ec"; libraryHaskellDepends = [ array base cairo Chart colour data-default-class lens mtl old-locale operational time @@ -3487,8 +3487,8 @@ self: { }: mkDerivation { pname = "Chart-diagrams"; - version = "1.7.1"; - sha256 = "d88af0adbe2bd9e208bcd27fda55810031ce09438801fc2bc25da15c414805c5"; + version = "1.8"; + sha256 = "d5c3e7235a98683337dc44127bc19998d747e37fa2d4211f2142ac51a5288558"; libraryHaskellDepends = [ base blaze-markup bytestring Chart colour containers data-default-class diagrams-core diagrams-lib diagrams-postscript @@ -3507,8 +3507,8 @@ self: { }: mkDerivation { pname = "Chart-gtk"; - version = "1.7"; - sha256 = "6adba9e92f11cebba5b3487352bd4a750b325b5fe0e17b1dfd02a920618d9991"; + version = "1.8"; + sha256 = "2bf9b59cf417a263cfe29fdc18135c8abfb997d5468e47ccaf9a756afde61aec"; libraryHaskellDepends = [ array base cairo Chart Chart-cairo colour data-default-class gtk mtl old-locale time @@ -13793,7 +13793,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ListLike" = callPackage + "ListLike_4_2_1" = callPackage ({ mkDerivation, array, base, bytestring, containers, dlist, fmlist , HUnit, QuickCheck, random, text, vector }: @@ -13812,6 +13812,30 @@ self: { homepage = "http://software.complete.org/listlike"; description = "Generic support for list-like structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ListLike" = callPackage + ({ mkDerivation, array, base, bytestring, containers, deepseq + , dlist, fmlist, HUnit, QuickCheck, random, text, utf8-string + , vector + }: + mkDerivation { + pname = "ListLike"; + version = "4.4"; + sha256 = "5aea87970f913a2e826634e4fb1d0c082202d005ce27ef9c1dcbc33ac412171a"; + libraryHaskellDepends = [ + array base bytestring containers deepseq dlist fmlist text + utf8-string vector + ]; + testHaskellDepends = [ + array base bytestring containers dlist fmlist HUnit QuickCheck + random text utf8-string vector + ]; + doCheck = false; + homepage = "http://github.com/JohnLato/listlike"; + description = "Generic support for list-like structures"; + license = stdenv.lib.licenses.bsd3; }) {}; "ListTree" = callPackage @@ -16985,7 +17009,7 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; - "PortMidi" = callPackage + "PortMidi_0_1_6_0" = callPackage ({ mkDerivation, alsaLib, base }: mkDerivation { pname = "PortMidi"; @@ -16996,6 +17020,20 @@ self: { homepage = "http://haskell.org/haskellwiki/PortMidi"; description = "A binding for PortMedia/PortMidi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) alsaLib;}; + + "PortMidi" = callPackage + ({ mkDerivation, alsaLib, base }: + mkDerivation { + pname = "PortMidi"; + version = "0.1.6.1"; + sha256 = "b89e9293d5b80d23b197dbb9bf196737765c66ffe96eaabdb9517fe20b516690"; + libraryHaskellDepends = [ base ]; + librarySystemDepends = [ alsaLib ]; + homepage = "http://github.com/ninegua/PortMidi"; + description = "A binding for PortMedia/PortMidi"; + license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) alsaLib;}; "PostgreSQL" = callPackage @@ -24763,10 +24801,8 @@ self: { }: mkDerivation { pname = "aeson-compat"; - version = "0.3.5.0"; - sha256 = "41d1f49aecc72061afef3b018eb210c306c7ba6b469c6721a08b7adf3014346b"; - revision = "1"; - editedCabalFile = "709fa06125a3991ac7f6d5aea1b72f369b02dd63d57d94b4b5638fad94996012"; + version = "0.3.5.1"; + sha256 = "6ab707c4e4f15d2f55e968a91809ab52c06d0099a58c1255c0f0c382caf3c843"; libraryHaskellDepends = [ aeson attoparsec base base-compat bytestring containers exceptions hashable nats scientific semigroups tagged text time @@ -29188,6 +29224,8 @@ self: { pname = "amazonka-core"; version = "1.3.7"; sha256 = "29c8aebe23cd6f48fa5f49c2ba02e2f12b8aa8fc0f820489b49dc95b28f8e05c"; + revision = "1"; + editedCabalFile = "8695dd4b7cd9abc2bc420d17a6e3da75ae1b28058fbb40984fdd940130874fdd"; libraryHaskellDepends = [ aeson attoparsec base bifunctors bytestring case-insensitive conduit conduit-extra cryptonite exceptions hashable http-conduit @@ -39088,7 +39126,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "authenticate" = callPackage + "authenticate_1_3_3_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring , case-insensitive, conduit, containers, http-conduit, http-types , monad-control, network-uri, resourcet, tagstream-conduit, text @@ -39107,9 +39145,10 @@ self: { homepage = "http://github.com/yesodweb/authenticate"; description = "Authentication methods for Haskell web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "authenticate_1_3_3_2" = callPackage + "authenticate" = callPackage ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring , case-insensitive, conduit, containers, http-conduit, http-types , monad-control, network-uri, resourcet, tagstream-conduit, text @@ -39128,7 +39167,6 @@ self: { homepage = "http://github.com/yesodweb/authenticate"; description = "Authentication methods for Haskell web applications"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "authenticate-kerberos" = callPackage @@ -40969,7 +41007,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "b9" = callPackage + "b9_0_5_20" = callPackage ({ mkDerivation, aeson, async, base, bifunctors, binary, boxes , bytestring, conduit, conduit-extra, ConfigFile, directory , filepath, free, hashable, hspec, hspec-expectations, mtl @@ -41000,9 +41038,10 @@ self: { homepage = "https://github.com/sheyll/b9-vm-image-builder"; description = "A tool and library for building virtual machine images"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "b9_0_5_21" = callPackage + "b9" = callPackage ({ mkDerivation, aeson, async, base, bifunctors, binary, boxes , bytestring, conduit, conduit-extra, ConfigFile, directory , filepath, free, hashable, hspec, hspec-expectations, mtl @@ -41033,7 +41072,6 @@ self: { homepage = "https://github.com/sheyll/b9-vm-image-builder"; description = "A tool and library for building virtual machine images"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "babylon" = callPackage @@ -42610,8 +42648,8 @@ self: { }: mkDerivation { pname = "beam-th"; - version = "0.1.0.3"; - sha256 = "f763443120766ce523e43354f413ce4136afdbc0647b8b8f36524918494d52aa"; + version = "0.2.0.0"; + sha256 = "d1a7938b5dda902e9c50566b70c9243bd6900285db0724f176ec200423c6d408"; libraryHaskellDepends = [ base beam microlens mtl template-haskell th-expand-syns transformers @@ -43654,7 +43692,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary-list" = callPackage + "binary-list_1_1_1_1" = callPackage ({ mkDerivation, base, binary, bytestring, deepseq, phantom-state , transformers }: @@ -43667,6 +43705,22 @@ self: { ]; description = "Lists of length a power of two"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "binary-list" = callPackage + ({ mkDerivation, base, binary, bytestring, deepseq, phantom-state + , transformers + }: + mkDerivation { + pname = "binary-list"; + version = "1.1.1.2"; + sha256 = "6b21e58ea4091b9572cb24a92dfb1ddc14fcea82d2272d30a83eb1b430dd1878"; + libraryHaskellDepends = [ + base binary bytestring deepseq phantom-state transformers + ]; + description = "Lists of length a power of two"; + license = stdenv.lib.licenses.bsd3; }) {}; "binary-literal-qq" = callPackage @@ -47059,6 +47113,37 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "bloodhound_0_11_1_0" = callPackage + ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers + , data-default-class, derive, directory, doctest, doctest-prop + , errors, exceptions, filepath, hashable, hspec, http-client + , http-types, mtl, mtl-compat, network-uri, QuickCheck + , quickcheck-properties, scientific, semigroups, text, time + , transformers, unordered-containers, vector + }: + mkDerivation { + pname = "bloodhound"; + version = "0.11.1.0"; + sha256 = "ecaf8e6d1bcb197387f8f7862420a362f33f03cb86fd068b8b9a1e462813d557"; + libraryHaskellDepends = [ + aeson base blaze-builder bytestring containers data-default-class + exceptions hashable http-client http-types mtl mtl-compat + network-uri scientific semigroups text time transformers + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers derive directory doctest + doctest-prop errors filepath hspec http-client http-types mtl + QuickCheck quickcheck-properties semigroups text time + unordered-containers vector + ]; + jailbreak = true; + homepage = "https://github.com/bitemyapp/bloodhound"; + description = "ElasticSearch client library for Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "bloodhound-amazonka-auth" = callPackage ({ mkDerivation, amazonka-core, amazonka-elasticsearch, base , bloodhound, exceptions, http-client, http-types, tasty @@ -50421,6 +50506,8 @@ self: { pname = "cabal-helper"; version = "0.6.2.0"; sha256 = "32adfd7deb1a227aa9b2fa5d9c6768ed395c1acaa9e5e0c5698ede52766daa2e"; + revision = "1"; + editedCabalFile = "218af6a209ee60126eb7997b51509638df1836d074267850d0e19248845a7111"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -50450,6 +50537,8 @@ self: { pname = "cabal-helper"; version = "0.6.3.0"; sha256 = "95d62411205c03f87737daaa790e885e73fea875194366a0b2168af494735f04"; + revision = "1"; + editedCabalFile = "068fec3003f2be2666502398dc893e9c42b6f412462c275884ad811e85811aea"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -50479,6 +50568,8 @@ self: { pname = "cabal-helper"; version = "0.6.3.1"; sha256 = "c19a9a87c54f6649e0f8cbb3a070244bff9fcc5b9ae783c00c049867fb1a7afe"; + revision = "1"; + editedCabalFile = "63136d3d9e1dc39c8fd90687c031727aa7c8c5f38dcf2b26a3b652a44b4d8041"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -50507,8 +50598,8 @@ self: { }: mkDerivation { pname = "cabal-helper"; - version = "0.7.1.0"; - sha256 = "7c78b875b5f246b8422b641923d2ffe593bf65ce9e99373e19ef8372df8db66f"; + version = "0.7.0.1"; + sha256 = "4c158f81ad325a0b2bfd5bfec149851f59837fd73775c8b4da0050bdeca0182d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -50528,6 +50619,38 @@ self: { license = stdenv.lib.licenses.agpl3; }) {}; + "cabal-helper_0_7_1_0" = callPackage + ({ mkDerivation, base, bytestring, Cabal, cabal-install, directory + , extra, filepath, ghc-prim, mtl, process, template-haskell + , temporary, transformers, unix, utf8-string + }: + mkDerivation { + pname = "cabal-helper"; + version = "0.7.1.0"; + sha256 = "7c78b875b5f246b8422b641923d2ffe593bf65ce9e99373e19ef8372df8db66f"; + revision = "1"; + editedCabalFile = "1d0a9e90761cbdc1804e396eeb3bf10ae5663f5b3ce637a5f80238b4f04ed5cd"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base Cabal directory filepath ghc-prim mtl process transformers + ]; + executableHaskellDepends = [ + base bytestring Cabal directory filepath ghc-prim process + template-haskell temporary transformers utf8-string + ]; + testHaskellDepends = [ + base bytestring Cabal directory extra filepath ghc-prim mtl process + template-haskell temporary transformers unix utf8-string + ]; + testToolDepends = [ cabal-install ]; + jailbreak = true; + doCheck = false; + description = "Simple interface to some of Cabal's configuration state used by ghc-mod"; + license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "cabal-info" = callPackage ({ mkDerivation, base, Cabal, directory, filepath , optparse-applicative @@ -52309,14 +52432,13 @@ self: { }: mkDerivation { pname = "caledon"; - version = "3.2.1.0"; - sha256 = "e9375150e95a7d02fe927a1d27209e925622bcdef28772ddbee569f789c5e355"; + version = "3.2.2.0"; + sha256 = "684d9af96e1ed25e995f5ec9c7205b32c0af77d52a24d053b4a90c673658656d"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base containers cpphs lens mtl parsec transformers ]; - jailbreak = true; homepage = "https://github.com/mmirman/caledon"; description = "a logic programming language based on the calculus of constructions"; license = stdenv.lib.licenses.gpl3; @@ -60255,8 +60377,8 @@ self: { ({ mkDerivation, base, contravariant, vector }: mkDerivation { pname = "colonnade"; - version = "0.1"; - sha256 = "a8c46dd9a4d45bc89408579416ff37cadd1b3f22403bb1b1d7dfe9d84ff5b0a7"; + version = "0.3"; + sha256 = "eab23a4fc5a24b3ab1c40254a63ccfdacf19c59fdead79258ee58e2d42f111c7"; libraryHaskellDepends = [ base contravariant vector ]; homepage = "https://github.com/andrewthad/colonnade#readme"; description = "Generic types and functions for columnar encoding and decoding"; @@ -64712,13 +64834,13 @@ self: { "coordinate" = callPackage ({ mkDerivation, base, directory, doctest, filepath, lens - , QuickCheck, radian, tagged, template-haskell, transformers + , QuickCheck, template-haskell, transformers }: mkDerivation { pname = "coordinate"; - version = "0.0.21"; - sha256 = "a126c5713e498514f8225af4942dfac5a2ccca501b20a1a2c1e7783f58f39a4f"; - libraryHaskellDepends = [ base lens radian tagged transformers ]; + version = "0.1.1"; + sha256 = "78bf22add331dead9d2fc3ea4c0f626d821462c47bae72be8833282e9455e7ca"; + libraryHaskellDepends = [ base lens transformers ]; testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell ]; @@ -67342,7 +67464,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cryptol" = callPackage + "cryptol_2_3_0" = callPackage ({ mkDerivation, alex, ansi-terminal, array, async, base , base-compat, bytestring, containers, deepseq, deepseq-generics , directory, filepath, generic-trie, gitrev, GraphSCC, happy @@ -67377,6 +67499,39 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "cryptol" = callPackage + ({ mkDerivation, alex, ansi-terminal, array, async, base + , base-compat, bytestring, containers, deepseq, directory, filepath + , gitrev, GraphSCC, happy, haskeline, heredoc, monad-control + , monadLib, old-time, presburger, pretty, process, QuickCheck + , random, sbv, simple-smt, smtLib, syb, template-haskell, text + , tf-random, transformers, transformers-base, utf8-string + }: + mkDerivation { + pname = "cryptol"; + version = "2.4.0"; + sha256 = "d34471f734429c25b52ca71ce63270ec3157a8413eeaf7f65dd7abe3cb27014d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array async base base-compat bytestring containers deepseq + directory filepath gitrev GraphSCC heredoc monad-control monadLib + old-time presburger pretty process QuickCheck random sbv simple-smt + smtLib syb template-haskell text tf-random transformers + transformers-base utf8-string + ]; + libraryToolDepends = [ alex happy ]; + executableHaskellDepends = [ + ansi-terminal base base-compat containers deepseq directory + filepath haskeline monad-control monadLib process random sbv + tf-random transformers + ]; + homepage = "http://www.cryptol.net/"; + description = "Cryptol: The Language of Cryptography"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "cryptonite_0_6" = callPackage ({ mkDerivation, base, byteable, bytestring, deepseq, ghc-prim , integer-gmp, memory, tasty, tasty-hunit, tasty-kat @@ -69213,8 +69368,8 @@ self: { ({ mkDerivation, base, ghc-prim, tasty, tasty-quickcheck }: mkDerivation { pname = "data-bword"; - version = "0.1"; - sha256 = "8d90db097d4df7688f2767f86d27534c79e8aa933a274962fc4a3ab4428b0ee8"; + version = "0.1.0.1"; + sha256 = "70f01f857865edcf1d1d20128b0202320b1635cc03b00954b6d1447cd699db7d"; libraryHaskellDepends = [ base ghc-prim ]; testHaskellDepends = [ base tasty tasty-quickcheck ]; homepage = "https://github.com/mvv/data-bword"; @@ -69629,8 +69784,8 @@ self: { }: mkDerivation { pname = "data-dword"; - version = "0.3"; - sha256 = "e3f8bd8b529cd1e720d07a9ab9861f4e6f2cf63594a246d405d0c8125bad9254"; + version = "0.3.1"; + sha256 = "0aa84874feca89e86320915e07e5c48c303e34bbcaf6a1c77dbe03f7fba601ea"; libraryHaskellDepends = [ base data-bword ghc-prim hashable template-haskell ]; @@ -76330,7 +76485,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "digits" = callPackage + "digits_0_2" = callPackage ({ mkDerivation, base, QuickCheck }: mkDerivation { pname = "digits"; @@ -76339,6 +76494,19 @@ self: { libraryHaskellDepends = [ base QuickCheck ]; description = "Converts integers to lists of digits and back"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "digits" = callPackage + ({ mkDerivation, base, QuickCheck }: + mkDerivation { + pname = "digits"; + version = "0.3"; + sha256 = "311474db49718cdb9d5dfb91a472456ee9d90eeb34b3439c63d94734792508c6"; + libraryHaskellDepends = [ base QuickCheck ]; + testHaskellDepends = [ base QuickCheck ]; + description = "Converts integers to lists of digits and back"; + license = stdenv.lib.licenses.bsd3; }) {}; "dimensional_0_13_0_1" = callPackage @@ -85028,6 +85196,33 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "eventstore_0_13_1_3" = callPackage + ({ mkDerivation, aeson, array, async, base, bytestring, cereal + , connection, containers, dns, dotnet-timespan, http-client + , protobuf, random, semigroups, stm, tasty, tasty-hunit, text, time + , unordered-containers, uuid + }: + mkDerivation { + pname = "eventstore"; + version = "0.13.1.3"; + sha256 = "027dda722c410a7b528537c4f296040b90c16cf91d95362356e608c672de6b2a"; + libraryHaskellDepends = [ + aeson array async base bytestring cereal connection containers dns + dotnet-timespan http-client protobuf random semigroups stm text + time unordered-containers uuid + ]; + testHaskellDepends = [ + aeson base connection dotnet-timespan stm tasty tasty-hunit text + time + ]; + jailbreak = true; + homepage = "http://github.com/YoEight/eventstore"; + description = "EventStore TCP Client"; + license = stdenv.lib.licenses.bsd3; + platforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "every-bit-counts" = callPackage ({ mkDerivation, base, haskell98 }: mkDerivation { @@ -87101,6 +87296,25 @@ self: { license = stdenv.lib.licenses.gpl2; }) {}; + "fasta_0_10_3_0" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, containers, foldl + , lens, parsec, pipes, pipes-attoparsec, pipes-bytestring + , pipes-group, pipes-text, split, text + }: + mkDerivation { + pname = "fasta"; + version = "0.10.3.0"; + sha256 = "31db040cf5c4ea1fb1aed11b327ffec9faf8f39344362d53472f57eeb8e20e40"; + libraryHaskellDepends = [ + attoparsec base bytestring containers foldl lens parsec pipes + pipes-attoparsec pipes-bytestring pipes-group pipes-text split text + ]; + homepage = "https://github.com/GregorySchwartz/fasta"; + description = "A simple, mindless parser for fasta files"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "fastbayes" = callPackage ({ mkDerivation, base, hmatrix, vector }: mkDerivation { @@ -96540,8 +96754,10 @@ self: { ({ mkDerivation, array, base, containers, ghc, hpc }: mkDerivation { pname = "ghc-srcspan-plugin"; - version = "0.2.1.0"; - sha256 = "918bf8aa5060db5635c8dbc630001247e1efe7188388c44e4f7bc5077f3266b1"; + version = "0.2.2.0"; + sha256 = "e137ecf1d3463bdb806cc681a0375e4a60d054e71839660e223e92906a60aff1"; + revision = "1"; + editedCabalFile = "3131594b5f9d1fc3ee35a5d8f87b1361840d02778080a6494beef514250e02c1"; libraryHaskellDepends = [ array base containers ghc hpc ]; description = "Generic GHC Plugin for annotating Haskell code with source location data"; license = stdenv.lib.licenses.bsd3; @@ -120989,8 +121205,8 @@ self: { }: mkDerivation { pname = "hjsonschema"; - version = "0.10.0.2"; - sha256 = "ef16997285185449df1c7885fb3465dc7da41511544497efe2421764db4e71e1"; + version = "0.10.0.3"; + sha256 = "ab44f4673a1e701c035a3002f509a7a20abd5958b17155861a2d37f8fdc11b51"; libraryHaskellDepends = [ aeson base bytestring containers file-embed filepath hjsonpointer http-client http-types pcre-heavy QuickCheck scientific semigroups @@ -124355,6 +124571,8 @@ self: { pname = "hoogle"; version = "5.0"; sha256 = "19fa34b6695956548f3dc1992e883bb7cf32459d260587dd5a06ef986684c50f"; + revision = "1"; + editedCabalFile = "aee369809a5bc7892a0c58189e4905dac0204a8c119a20bc8d26011c6d37af72"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -131020,8 +131238,8 @@ self: { }: mkDerivation { pname = "hsyslog-udp"; - version = "0.1.1"; - sha256 = "eedafcd134d2085c02b363889df5291b2062dfb51685a24a93eb133028b3aea1"; + version = "0.1.2"; + sha256 = "1a6e1d18039150a6036003b5bfc40bdde9650e6eee67404bc9ee4aecf7baa4ae"; libraryHaskellDepends = [ base bytestring hsyslog network text time unix ]; @@ -133540,8 +133758,8 @@ self: { }: mkDerivation { pname = "http-proxy"; - version = "0.1.0.1"; - sha256 = "e83df2fb719079d0da38b200a1e5f1ee45f734504e59f1eecde4d81cfd499870"; + version = "0.1.0.3"; + sha256 = "d9c7363f375eff74e1eea86c07797f13592d929358cfcb38e725587f842284e6"; libraryHaskellDepends = [ async base blaze-builder bytestring bytestring-lexing case-insensitive conduit conduit-extra http-client http-conduit @@ -133554,6 +133772,7 @@ self: { http-conduit http-types network QuickCheck random resourcet text vault wai wai-conduit warp warp-tls ]; + jailbreak = true; homepage = "https://github.com/erikd/http-proxy"; description = "A library for writing HTTP and HTTPS proxies"; license = stdenv.lib.licenses.bsd3; @@ -136165,6 +136384,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hyperloglogplus" = callPackage + ({ mkDerivation, base, bits, containers, HUnit, murmur-hash + , semigroups, tasty, tasty-hunit, vector + }: + mkDerivation { + pname = "hyperloglogplus"; + version = "0.1.0.0"; + sha256 = "339da5d125bc24561b37c950cb16375424bb7831d50cc6b34adeefb0361821ca"; + libraryHaskellDepends = [ + base bits containers murmur-hash semigroups vector + ]; + testHaskellDepends = [ base HUnit semigroups tasty tasty-hunit ]; + homepage = "https://github.com/ezhulenev/hyperloglogplus#readme"; + description = "Approximate cardinality estimation using constant space"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hyperpublic" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring , http-enumerator, http-types @@ -138496,23 +138732,26 @@ self: { }) {}; "imperative-edsl" = callPackage - ({ mkDerivation, array, base, BoundedChan, containers, deepseq - , directory, exception-transformers, ghc-prim, language-c-quote - , mainland-pretty, microlens, microlens-mtl, microlens-th, mtl - , open-typerep, operational-alacarte, process, srcloc, syntactic - , tasty-quickcheck, tasty-th, time + ({ mkDerivation, array, base, BoundedChan, containers + , data-default-class, deepseq, directory, exception-transformers + , filepath, ghc-prim, language-c-quote, mainland-pretty, microlens + , microlens-mtl, microlens-th, mtl, operational-alacarte, process + , random, srcloc, stm, syntactic, tasty-quickcheck, tasty-th, time }: mkDerivation { pname = "imperative-edsl"; - version = "0.5"; - sha256 = "37cd2e3c9e389cff09d5d8971b020866ff44958e17607f02012d54d3430233a8"; + version = "0.6"; + sha256 = "fda40eb483f84092a3c2e2456445fadf151de469c1231366f38f061790222cc2"; libraryHaskellDepends = [ - array base BoundedChan containers deepseq directory - exception-transformers ghc-prim language-c-quote mainland-pretty - microlens microlens-mtl microlens-th mtl open-typerep - operational-alacarte process srcloc syntactic time + array base BoundedChan containers data-default-class deepseq + directory exception-transformers ghc-prim language-c-quote + mainland-pretty microlens microlens-mtl microlens-th mtl + operational-alacarte process srcloc stm syntactic time + ]; + testHaskellDepends = [ + base directory filepath process random syntactic tasty-quickcheck + tasty-th ]; - testHaskellDepends = [ base syntactic tasty-quickcheck tasty-th ]; homepage = "https://github.com/emilaxelsson/imperative-edsl"; description = "Deep embedding of imperative programs with code generation"; license = stdenv.lib.licenses.bsd3; @@ -138847,13 +139086,12 @@ self: { }: mkDerivation { pname = "indentation"; - version = "0.3.0.1"; - sha256 = "5908207cebd6d4ab81ba431653ae9f3c1e307c690ceb218f682b6b2ae925e968"; + version = "0.3.1"; + sha256 = "5b374defe3f6823dfcab8028ea152b2237246191659303e2d362daa4fc2faad1"; libraryHaskellDepends = [ base indentation-core indentation-parsec indentation-trifecta mtl parsec parsers trifecta ]; - jailbreak = true; homepage = "https://bitbucket.org/adamsmd/indentation"; description = "Indentation sensitive parsing combinators for Parsec and Trifecta"; license = stdenv.lib.licenses.bsd3; @@ -138892,13 +139130,12 @@ self: { }: mkDerivation { pname = "indentation-trifecta"; - version = "0.0"; - sha256 = "496c7f6feacbea5c63296475267103f8db870289d05c46672a5a224941917f3d"; + version = "0.0.1"; + sha256 = "c71e7f7416e2e0154cc8bfbef28a964771545700a4eb9af00a7e24b6dff8e6aa"; libraryHaskellDepends = [ base indentation-core mtl parsers trifecta ]; testHaskellDepends = [ base tasty tasty-hunit trifecta ]; - jailbreak = true; homepage = "https://bitbucket.org/adamsmd/indentation"; description = "Indentation sensitive parsing combinators for Trifecta"; license = stdenv.lib.licenses.bsd3; @@ -140036,8 +140273,8 @@ self: { }: mkDerivation { pname = "intero"; - version = "0.1.15"; - sha256 = "ef80da6f426e31f3b2337c2c94834574ec111ce7ba3d9f2834326857506f1eba"; + version = "0.1.16"; + sha256 = "28dc0a16cec34ec8423f7b97c5243f0a894d22881e400c8c74cb06608040dfa1"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -140742,18 +140979,19 @@ self: { }) {}; "ip" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, hashable - , QuickCheck, test-framework, test-framework-quickcheck2, text + ({ mkDerivation, aeson, attoparsec, base, bytestring, doctest + , hashable, primitive, QuickCheck, test-framework + , test-framework-quickcheck2, text, vector }: mkDerivation { pname = "ip"; - version = "0.6.2"; - sha256 = "81f467ddd8e5880add8fd76333fc77e8cbc5af21281e389dac30d7a44b604268"; + version = "0.8.1"; + sha256 = "0614467bf2db28cb5d47692906852f887bebd786643e1a5490bd23cf8a36d6bd"; libraryHaskellDepends = [ - aeson attoparsec base bytestring hashable text + aeson attoparsec base bytestring hashable primitive text vector ]; testHaskellDepends = [ - base bytestring QuickCheck test-framework + base bytestring doctest QuickCheck test-framework test-framework-quickcheck2 text ]; homepage = "https://github.com/andrewthad/haskell-ip#readme"; @@ -143364,8 +143602,8 @@ self: { }: mkDerivation { pname = "jsaddle"; - version = "0.4.0.4"; - sha256 = "42a946c2198ad33398c884df9e1385e3b16097ea4945b43d9a2eddbce2ad0e05"; + version = "0.4.0.5"; + sha256 = "b1c77d083ae9ccb1eadde1b63599c29460c6623fe000061168e92f3b8f01a333"; libraryHaskellDepends = [ base gi-glib gi-gtk gi-javascriptcore gi-webkit haskell-gi-base lens template-haskell text transformers webkitgtk3-javascriptcore @@ -143385,8 +143623,8 @@ self: { }: mkDerivation { pname = "jsaddle-dom"; - version = "0.2.0.0"; - sha256 = "7c9bbf02c33e0ef074633f9ae023a375db775c5445a138956b27ffd2aed76446"; + version = "0.2.0.1"; + sha256 = "2cfdbf281e29c9b1e3ea2f4db59f80263309bad6f080ceb9cbf4072cfa3ff7f3"; libraryHaskellDepends = [ base base-compat gi-glib gi-gtk gi-webkit haskell-gi-base jsaddle lens text transformers @@ -143459,6 +143697,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "json-api" = callPackage + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers + , data-default, hspec, lens, lens-aeson, text, unordered-containers + , url + }: + mkDerivation { + pname = "json-api"; + version = "0.1.0.2"; + sha256 = "48d7b0256fe2b98ef762d9e74262c322cc896169a0d4ab0421c6abf281c609de"; + libraryHaskellDepends = [ + aeson base containers data-default lens-aeson text + unordered-containers url + ]; + testHaskellDepends = [ + aeson aeson-pretty base bytestring containers data-default hspec + lens lens-aeson text url + ]; + homepage = "https://github.com/toddmohney/json-api"; + description = "Utilities for generating JSON-API payloads"; + license = stdenv.lib.licenses.mit; + }) {}; + "json-assertions" = callPackage ({ mkDerivation, aeson, base, indexed, indexed-free, lens , lens-aeson, text @@ -146652,6 +146912,8 @@ self: { pname = "kraken"; version = "0.0.1"; sha256 = "227f6e535ef40cdad52efbcf412126b9a90494648bd824e7f8eec3cc8b79c6b5"; + revision = "1"; + editedCabalFile = "4dac6e70c86448ee533462e74e1325dedf7bcb0a8e905081d6f4ff47ff0e31ee"; libraryHaskellDepends = [ aeson base bytestring http-client http-client-tls mtl ]; @@ -146669,6 +146931,8 @@ self: { pname = "kraken"; version = "0.0.2"; sha256 = "0d75c7c7e0be11e0ca508506a693acd7638e875418e95407ecb2f1e6ecabd046"; + revision = "1"; + editedCabalFile = "0f5024f0979ed854a48731d7aa59f27adf6bfa4b33a1be03eed472bdf0d9480b"; libraryHaskellDepends = [ aeson base bytestring http-client http-client-tls mtl ]; @@ -149935,10 +150199,8 @@ self: { ({ mkDerivation, base, size-based }: mkDerivation { pname = "lazy-search"; - version = "0.1.0.0"; - sha256 = "1691e5ec0363fd3aff644ae4daad29c84ea3d3a489546949546e4fb2678b688f"; - revision = "1"; - editedCabalFile = "8aba91a790a6f69fc43f2b46c3946e1ab44b769b3335ae08973132e52f9580ce"; + version = "0.1.1.0"; + sha256 = "dc186c44e9a06e2fd224a5844c8f45b661754e40a7ba2f87958b5d595c19dcc5"; libraryHaskellDepends = [ base size-based ]; description = "Finds values satisfying a lazy predicate"; license = stdenv.lib.licenses.bsd3; @@ -156697,8 +156959,8 @@ self: { ({ mkDerivation, base, network, transformers }: mkDerivation { pname = "mac"; - version = "0.1.2.0"; - sha256 = "8ac8188429cb9e20aefa83e3943f7b4f2713248160bcbeb9080784e637e5789d"; + version = "0.1.3.0"; + sha256 = "cddb87cee4de0c1a54319de2a323deb8aecc0251e91d2c3a9ea16224bfbe127e"; libraryHaskellDepends = [ base network transformers ]; description = "Static Mandatory Access Control in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -162649,7 +162911,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "modify-fasta" = callPackage + "modify-fasta_0_8_1_3" = callPackage ({ mkDerivation, base, containers, fasta, mtl, optparse-applicative , pipes, pipes-text, regex-tdfa, regex-tdfa-text, split, text , text-show @@ -162671,6 +162933,31 @@ self: { homepage = "https://github.com/GregorySchwartz/modify-fasta"; description = "Modify fasta (and CLIP) files in several optional ways"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "modify-fasta" = callPackage + ({ mkDerivation, base, containers, fasta, mtl, optparse-applicative + , pipes, pipes-text, regex-tdfa, regex-tdfa-text, split, text + , text-show + }: + mkDerivation { + pname = "modify-fasta"; + version = "0.8.2.0"; + sha256 = "8d5f8148b969147edef5483e72edd419f2184a0e43da2bdf201e09cf2d42877a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers fasta regex-tdfa regex-tdfa-text split text + text-show + ]; + executableHaskellDepends = [ + base containers fasta mtl optparse-applicative pipes pipes-text + split text + ]; + homepage = "https://github.com/GregorySchwartz/modify-fasta"; + description = "Modify fasta (and CLIP) files in several optional ways"; + license = stdenv.lib.licenses.gpl3; }) {}; "modsplit" = callPackage @@ -173126,8 +173413,8 @@ self: { }: mkDerivation { pname = "octane"; - version = "0.13.0"; - sha256 = "4ee2ee083a497782b86401796a78a3f6cb42c2409c93f67bb95394e29a257167"; + version = "0.13.2"; + sha256 = "661df67cee1c5719207e2c92aebde1d7da52333dd5b0227f87e2619a234d5729"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -173143,31 +173430,6 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "octane_0_13_1" = callPackage - ({ mkDerivation, aeson, base, bimap, binary, binary-bits - , bytestring, containers, data-binary-ieee754, deepseq, doctest - , file-embed, http-client, http-client-tls, regex-compat, tasty - , tasty-hspec, text, unordered-containers, vector - }: - mkDerivation { - pname = "octane"; - version = "0.13.1"; - sha256 = "77db47b1c983531846953baa2a720ed38bfcb53c2ad5031a8dbb94cd440c62ac"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bimap binary binary-bits bytestring containers - data-binary-ieee754 deepseq file-embed http-client http-client-tls - regex-compat text unordered-containers vector - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ base doctest tasty tasty-hspec ]; - homepage = "https://github.com/tfausak/octane#readme"; - description = "Parse Rocket League replays"; - license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "octohat" = callPackage ({ mkDerivation, aeson, base, base-compat, base16-bytestring , base64-bytestring, bytestring, containers, cryptohash, dotenv @@ -188422,7 +188684,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pretty-show" = callPackage + "pretty-show_1_6_10" = callPackage ({ mkDerivation, array, base, filepath, ghc-prim, happy , haskell-lexer, pretty }: @@ -188437,6 +188699,28 @@ self: { ]; libraryToolDepends = [ happy ]; executableHaskellDepends = [ base ]; + jailbreak = true; + homepage = "http://wiki.github.com/yav/pretty-show"; + description = "Tools for working with derived `Show` instances and generic inspection of values"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pretty-show" = callPackage + ({ mkDerivation, array, base, filepath, ghc-prim, happy + , haskell-lexer, pretty + }: + mkDerivation { + pname = "pretty-show"; + version = "1.6.11"; + sha256 = "b80bb4c5ddcb49dcd2df68a837aafd1d9361fc9157a8bafbb92fef229e9def82"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base filepath ghc-prim haskell-lexer pretty + ]; + libraryToolDepends = [ happy ]; + executableHaskellDepends = [ base ]; homepage = "http://wiki.github.com/yav/pretty-show"; description = "Tools for working with derived `Show` instances and generic inspection of values"; license = stdenv.lib.licenses.mit; @@ -189117,6 +189401,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "processing-for-haskell" = callPackage + ({ mkDerivation, base, data-default, GLUT, hsnoise, NumInstances + , OpenGL, random, time, transformers, utf8-string, vector-space + }: + mkDerivation { + pname = "processing-for-haskell"; + version = "0.1.0.1"; + sha256 = "8303039ea8fe7830b95ca1859295a89468dc0c369c83e7991960e876fbcf1854"; + libraryHaskellDepends = [ + base data-default GLUT hsnoise NumInstances OpenGL random time + transformers utf8-string vector-space + ]; + homepage = "https://github.com/anton-k/processing-for-haskell"; + description = "Computer graphics for kids and artists with Processing implemented in Haskell"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "processor-creative-kit" = callPackage ({ mkDerivation, array, attoparsec, base, bytestring, containers , deepseq, mtl @@ -192285,28 +192586,6 @@ self: { }) {}; "quantum-random" = callPackage - ({ mkDerivation, aeson, ansi-terminal, ansigraph, base, bytestring - , directory, haskeline, hspec, http-conduit, mtl, QuickCheck - , regex-posix, terminal-size, text - }: - mkDerivation { - pname = "quantum-random"; - version = "0.6.0"; - sha256 = "7913e0650571d80a4cd620813b8570fc130d018006b8a9f7502278ff9346835d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal ansigraph base bytestring directory - http-conduit regex-posix terminal-size text - ]; - executableHaskellDepends = [ base haskeline mtl ]; - testHaskellDepends = [ base hspec QuickCheck ]; - homepage = "http://github.com/BlackBrane/quantum-random/"; - description = "Retrieve, store and manage real quantum random data"; - license = stdenv.lib.licenses.mit; - }) {}; - - "quantum-random_0_6_1" = callPackage ({ mkDerivation, aeson, ansi-terminal, ansigraph, base, bytestring , directory, haskeline, hspec, http-conduit, mtl, QuickCheck , regex-posix, terminal-size, text @@ -192326,7 +192605,6 @@ self: { homepage = "http://github.com/BlackBrane/quantum-random/"; description = "Retrieve, store and manage real quantum random data"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qudb" = callPackage @@ -196026,14 +196304,15 @@ self: { "reflex-dom-colonnade" = callPackage ({ mkDerivation, base, colonnade, containers, contravariant, reflex - , reflex-dom, vector + , reflex-dom, semigroups, vector }: mkDerivation { pname = "reflex-dom-colonnade"; - version = "0.2"; - sha256 = "aeb9a110bd4b8fa12547fb7147c7fda937ffd4e31607a799b9284fb9984a6e01"; + version = "0.3"; + sha256 = "9bf95b9933ee86f7efda769825577dd089c007b9521adfde1bdc87126c732168"; libraryHaskellDepends = [ - base colonnade containers contravariant reflex reflex-dom vector + base colonnade containers contravariant reflex reflex-dom + semigroups vector ]; homepage = "https://github.com/andrewthad/colonnade#readme"; description = "Use colonnade with reflex-dom"; @@ -198985,7 +199264,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rest-client" = callPackage + "rest-client_0_5_1_0" = callPackage ({ mkDerivation, aeson-utils, base, bytestring, case-insensitive , data-default, exceptions, http-conduit, http-types, hxt , hxt-pickle-utils, monad-control, mtl, resourcet, rest-types @@ -199006,9 +199285,10 @@ self: { ]; description = "Utility library for use in generated API client libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rest-client_0_5_1_1" = callPackage + "rest-client" = callPackage ({ mkDerivation, aeson-utils, base, bytestring, case-insensitive , data-default, exceptions, http-client, http-conduit, http-types , hxt, hxt-pickle-utils, monad-control, mtl, resourcet, rest-types @@ -199027,7 +199307,6 @@ self: { ]; description = "Utility library for use in generated API client libraries"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rest-core_0_33_1_2" = callPackage @@ -199948,12 +200227,33 @@ self: { pname = "rest-types"; version = "1.14.0.1"; sha256 = "645516a501f3f6d928c04b6022b111bd5411f301572f4de6b96ef7b15e480b32"; - revision = "2"; - editedCabalFile = "ff6c3027d4c2f87d78868a23bfbda807237c2d31b6caae9399f1de159a6e0ac1"; + revision = "3"; + editedCabalFile = "7b2771d02a8e0c49e92839fd69f09df782774370cfcc1de2875ed165a4174197"; libraryHaskellDepends = [ aeson base case-insensitive generic-aeson generic-xmlpickler hxt json-schema rest-stringmap text uuid ]; + jailbreak = true; + description = "Silk Rest Framework Types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rest-types_1_14_1" = callPackage + ({ mkDerivation, aeson, base, base-compat, case-insensitive + , generic-aeson, generic-xmlpickler, hxt, json-schema + , rest-stringmap, text, uuid + }: + mkDerivation { + pname = "rest-types"; + version = "1.14.1"; + sha256 = "a8433f4736820b19da3ac626f653954a93e72ab3c3d5a50983eed3aeffb20157"; + revision = "1"; + editedCabalFile = "3d5e37da0fb2c607d0fce6c1c3562392238f7636ed6574719472a58f1341247f"; + libraryHaskellDepends = [ + aeson base base-compat case-insensitive generic-aeson + generic-xmlpickler hxt json-schema rest-stringmap text uuid + ]; description = "Silk Rest Framework Types"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -199966,8 +200266,8 @@ self: { }: mkDerivation { pname = "rest-types"; - version = "1.14.1"; - sha256 = "a8433f4736820b19da3ac626f653954a93e72ab3c3d5a50983eed3aeffb20157"; + version = "1.14.1.1"; + sha256 = "b7e08e65bbae20bd891f0905c9c785184182172094673ab13e66499e4fe3969a"; libraryHaskellDepends = [ aeson base base-compat case-insensitive generic-aeson generic-xmlpickler hxt json-schema rest-stringmap text uuid @@ -215459,8 +215759,8 @@ self: { }: mkDerivation { pname = "snaplet-purescript"; - version = "0.4.1.0"; - sha256 = "0b5edf0aa99abe36eab3d127c02d0352338cbc5f53437c374dce5f116b4180a2"; + version = "0.5.1.0"; + sha256 = "24ca54a3186394624f76d67cc87ad4323e059b10abc7ea761f09564284d1c6df"; libraryHaskellDepends = [ base configurator mtl raw-strings-qq shelly snap snap-core string-conv text transformers @@ -220692,21 +220992,29 @@ self: { }) {}; "steeloverseer" = callPackage - ({ mkDerivation, ansi-terminal, base, filepath, fsnotify, process - , regex-tdfa, time, unix + ({ mkDerivation, aeson, ansi-terminal, async, base, bytestring + , containers, directory, filepath, fsnotify, megaparsec, microlens + , mtl, optparse-applicative, process, regex-tdfa, semigroups, stm + , text, yaml }: mkDerivation { pname = "steeloverseer"; - version = "1.1.1.0"; - sha256 = "cb255fce9ec38417473a10e00efd68450699ebb64f1ed0d683348dcd7b86a9eb"; - isLibrary = false; + version = "2.0"; + sha256 = "44a62c33eb251368dfa4fd97f317c4375dc65e6d66fc2362d3c17bcca82b0abf"; + revision = "1"; + editedCabalFile = "ccc318eb672b41d63104450aa7c25947df290ac9efc7c0ae62b727ad5f5898f2"; + isLibrary = true; isExecutable = true; - executableHaskellDepends = [ - ansi-terminal base filepath fsnotify process regex-tdfa time unix + libraryHaskellDepends = [ + aeson ansi-terminal async base bytestring containers megaparsec + microlens mtl process regex-tdfa semigroups stm text yaml + ]; + executableHaskellDepends = [ + base bytestring directory filepath fsnotify optparse-applicative + regex-tdfa semigroups yaml ]; - jailbreak = true; homepage = "https://github.com/schell/steeloverseer"; - description = "A file watcher"; + description = "A file watcher and development tool"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -225989,6 +226297,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "system-info" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "system-info"; + version = "0.1.0.1"; + sha256 = "e037238c975acc226dc5d2d483267d5d2c09ada7a966f269d858a824e15f5c88"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/ChaosGroup/system-info"; + description = "Get information about CPUs, memory, etc"; + license = stdenv.lib.licenses.mit; + }) {}; + "system-inotify" = callPackage ({ mkDerivation, base, bytestring }: mkDerivation { @@ -231737,7 +232058,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "th-lift-instances" = callPackage + "th-lift-instances_0_1_8" = callPackage ({ mkDerivation, base, bytestring, containers, QuickCheck , template-haskell, text, th-lift, vector }: @@ -231754,9 +232075,10 @@ self: { homepage = "http://github.com/bennofs/th-lift-instances/"; description = "Lift instances for template-haskell for common data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "th-lift-instances_0_1_9" = callPackage + "th-lift-instances" = callPackage ({ mkDerivation, base, bytestring, containers, QuickCheck , template-haskell, text, th-lift, vector }: @@ -231773,7 +232095,6 @@ self: { homepage = "http://github.com/bennofs/th-lift-instances/"; description = "Lift instances for template-haskell for common data types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-orphans_0_8_2" = callPackage @@ -232751,6 +233072,7 @@ self: { mersenne-random-pure64 mtl parsec PortMidi process serialport text time transformers websockets ]; + jailbreak = true; homepage = "http://tidal.lurk.org/"; description = "Pattern language for improvised music"; license = stdenv.lib.licenses.gpl3; @@ -232787,6 +233109,7 @@ self: { libraryHaskellDepends = [ base containers PortMidi tidal time transformers ]; + jailbreak = true; homepage = "http://tidal.lurk.org/"; description = "MIDI support for tidal"; license = stdenv.lib.licenses.gpl3; @@ -233528,7 +233851,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "timerep" = callPackage + "timerep_2_0_0_1" = callPackage ({ mkDerivation, attoparsec, base, monoid-subclasses, QuickCheck , tasty, tasty-hunit, tasty-quickcheck, text, time }: @@ -233545,6 +233868,26 @@ self: { homepage = "https://github.com/HugoDaniel/timerep"; description = "Parse and display time according to some RFCs (RFC3339, RFC2822, RFC822)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "timerep" = callPackage + ({ mkDerivation, attoparsec, base, monoid-subclasses, QuickCheck + , tasty, tasty-hunit, tasty-quickcheck, text, time + }: + mkDerivation { + pname = "timerep"; + version = "2.0.0.2"; + sha256 = "1d4e417f3ca08921941c16791680e13b66fb1844d94759068846ede78c965339"; + libraryHaskellDepends = [ + attoparsec base monoid-subclasses text time + ]; + testHaskellDepends = [ + base QuickCheck tasty tasty-hunit tasty-quickcheck text time + ]; + homepage = "https://github.com/HugoDaniel/timerep"; + description = "Parse and display time according to some RFCs (RFC3339, RFC2822, RFC822)"; + license = stdenv.lib.licenses.bsd3; }) {}; "timers" = callPackage @@ -235283,21 +235626,14 @@ self: { }) {}; "transient" = callPackage - ({ mkDerivation, base, containers, directory, filepath, HTTP, mtl - , network, process, random, stm, time, transformers - }: + ({ mkDerivation, base, containers, mtl, stm, time, transformers }: mkDerivation { pname = "transient"; - version = "0.4.0"; - sha256 = "74b8895d8193fd5565760a968736e34ecea96dde7d5298dae6776f7dd52aaefc"; + version = "0.4.1"; + sha256 = "e862734582b0d9a70cbfcdbcb786f7945b7158c3ae7ba3c23882debc6126e4c0"; libraryHaskellDepends = [ base containers mtl stm time transformers ]; - testHaskellDepends = [ - base containers directory filepath HTTP mtl network process random - stm transformers - ]; - doCheck = false; homepage = "http://www.fpcomplete.com/user/agocorona"; description = "Making composable programs with multithreading, events and distributed computing"; license = stdenv.lib.licenses.mit; @@ -235312,17 +235648,16 @@ self: { }: mkDerivation { pname = "transient-universe"; - version = "0.3"; - sha256 = "8bc952a09ac7f53a3f5d8b0941f91bef9d32f4c6f395a0ee5b4f030367ac9a56"; + version = "0.3.1.2"; + sha256 = "cee59c9fd920435ac47913002bccea58348e4923ac557ca7727a86699799e133"; libraryHaskellDepends = [ base bytestring case-insensitive containers directory filepath hashable HTTP mtl network network-info network-uri process random stm TCache text time transformers transient vector websockets ]; - doHaddock = false; homepage = "http://www.fpcomplete.com/user/agocorona"; - description = "remote execution and map-reduce: distributed computing for transient"; - license = stdenv.lib.licenses.gpl3; + description = "Remote execution and map-reduce: distributed computing for Transient"; + license = stdenv.lib.licenses.mit; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -246287,8 +246622,8 @@ self: { }: mkDerivation { pname = "wai-extra"; - version = "3.0.15.3"; - sha256 = "e841c5f101b0d436c1e54dd197e1e245b8b5ca4d3db18c48a837db1db3d5c1b3"; + version = "3.0.16.1"; + sha256 = "8f726e73e1895e30e260dd843159bce4cd10740dead9b1607884217bf0975157"; libraryHaskellDepends = [ aeson ansi-terminal base base64-bytestring blaze-builder bytestring case-insensitive containers cookie data-default-class deepseq @@ -252215,16 +252550,15 @@ self: { }) {}; "wol" = callPackage - ({ mkDerivation, base, network, split }: + ({ mkDerivation, base, bytestring, network, split }: mkDerivation { pname = "wol"; - version = "0.1.2"; - sha256 = "f1942a017fa2353db139cbfb26a2b6916281c8bab209de191e72bd9d75481570"; + version = "0.2"; + sha256 = "5c6c6b4d393a205a3a5e3a658fba4bff9cee0f8f9ab73dcccee4ac9dc4d30f38"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base network split ]; + libraryHaskellDepends = [ base bytestring network split ]; executableHaskellDepends = [ base ]; - jailbreak = true; homepage = "http://tom.lokhorst.eu/wol"; description = "Send a Wake on LAN Magic Packet"; license = stdenv.lib.licenses.bsd3; @@ -252946,7 +253280,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "wuss" = callPackage + "wuss_1_0_4" = callPackage ({ mkDerivation, base, bytestring, connection, network, websockets }: mkDerivation { @@ -252959,6 +253293,22 @@ self: { homepage = "https://github.com/tfausak/wuss#readme"; description = "Secure WebSocket (WSS) clients"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wuss" = callPackage + ({ mkDerivation, base, bytestring, connection, network, websockets + }: + mkDerivation { + pname = "wuss"; + version = "1.1.0"; + sha256 = "c244920c720801ded763584b8e89169c801325a9ad8144008bb9bbb2ed2d37c1"; + libraryHaskellDepends = [ + base bytestring connection network websockets + ]; + homepage = "https://github.com/tfausak/wuss#readme"; + description = "Secure WebSocket (WSS) clients"; + license = stdenv.lib.licenses.mit; }) {}; "wx" = callPackage @@ -258800,15 +259150,14 @@ self: { }: mkDerivation { pname = "yesod-auth-oauth2"; - version = "0.2.0"; - sha256 = "2a7efeb3df72d5a4870b8e2eb308a0548db2f9562beb26904e7782000ca0b3ed"; + version = "0.2.1"; + sha256 = "88d7d296c6e42f73dde6fb52f356d2a944c0776f4153a843ebf1bd0efaef97f6"; libraryHaskellDepends = [ aeson authenticate base bytestring hoauth2 http-client http-conduit http-types lifted-base network-uri random text transformers vector yesod-auth yesod-core yesod-form ]; testHaskellDepends = [ base hspec ]; - doHaddock = false; homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; description = "OAuth 2.0 authentication plugins"; license = stdenv.lib.licenses.bsd3; @@ -261759,8 +262108,8 @@ self: { }: mkDerivation { pname = "yesod-ip"; - version = "0.4.1"; - sha256 = "a61372177dff4a0b8efa8dcb6dd82ce021b9bfb6f69f014e9f284841bcfc8dc1"; + version = "0.5.0"; + sha256 = "b6945480c694b48c03daceb6c286636f65ed9c442b7b94774814c1078418a029"; libraryHaskellDepends = [ base http-api-data ip path-pieces persistent text yesod-core yesod-form From 4ba794ed89f5b37265eb8e4819de32df4704bc50 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 7 Jul 2016 17:19:55 +0200 Subject: [PATCH 50/79] Add LTS Haskell 6.6. --- pkgs/top-level/haskell-packages.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 95d8ede8f09..3396a13985a 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -421,7 +421,10 @@ rec { lts-6_5 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-6.5.nix { }; }; - lts-6 = packages.lts-6_5; + lts-6_6 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-6.6.nix { }; + }; + lts-6 = packages.lts-6_6; lts = packages.lts-6; }; From 04eb7492dccb3d314911666fea15a67602c1e422 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 7 Jul 2016 17:20:15 +0200 Subject: [PATCH 51/79] ixgbevf: Init at 3.2.2 This driver is necessary for Enhanced Networking on most EC2 instance types. --- pkgs/os-specific/linux/ixgbevf/default.nix | 26 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/os-specific/linux/ixgbevf/default.nix diff --git a/pkgs/os-specific/linux/ixgbevf/default.nix b/pkgs/os-specific/linux/ixgbevf/default.nix new file mode 100644 index 00000000000..eb90c9fb1eb --- /dev/null +++ b/pkgs/os-specific/linux/ixgbevf/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, kernel, kmod }: + +stdenv.mkDerivation rec { + name = "ixgbevf-${version}-${kernel.version}"; + version = "3.2.2"; + + src = fetchurl { + url = "mirror://sourceforge/e1000/ixgbevf-${version}.tar.gz"; + sha256 = "1i6ry3vd77190sxb47xhbz3v30gighwax6prav4ggs3q80a389c8"; + }; + + configurePhase = '' + cd src + makeFlagsArray+=(KSRC=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build INSTALL_MOD_PATH=$out MANDIR=/share/man) + substituteInPlace common.mk --replace /sbin/depmod ${kmod}/bin/depmod + ''; + + enableParallelBuilding = true; + + meta = { + description = "Intel 82599 Virtual Function Driver"; + homepage = https://sourceforge.net/projects/e1000/files/ixgbevf%20stable/; + license = stdenv.lib.licenses.gpl2; + priority = 20; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 716eca125f1..8e3db24e41a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11009,6 +11009,8 @@ in e1000e = callPackage ../os-specific/linux/e1000e {}; + ixgbevf = callPackage ../os-specific/linux/ixgbevf {}; + v4l2loopback = callPackage ../os-specific/linux/v4l2loopback { }; frandom = callPackage ../os-specific/linux/frandom { }; From 3adb769776199ea5e4fe8760fca0e4dca3193fae Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 7 Jul 2016 17:21:44 +0200 Subject: [PATCH 52/79] amazon-image.nix: Add the ixgbevf driver --- nixos/modules/virtualisation/amazon-image.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/virtualisation/amazon-image.nix b/nixos/modules/virtualisation/amazon-image.nix index 9e8417cde1d..da5575f4b6d 100644 --- a/nixos/modules/virtualisation/amazon-image.nix +++ b/nixos/modules/virtualisation/amazon-image.nix @@ -20,7 +20,8 @@ let cfg = config.ec2; in autoResize = true; }; - boot.initrd.kernelModules = [ "xen-blkfront" "xen-netfront" ]; + boot.extraModulePackages = [ config.boot.kernelPackages.ixgbevf ]; + boot.initrd.kernelModules = [ "xen-blkfront" "xen-netfront" "ixgbevf" ]; boot.kernelParams = mkIf cfg.hvm [ "console=ttyS0" ]; # Prevent the nouveau kernel module from being loaded, as it From 92ef67b57ce72501c4d5568e97d4871fe40f1bf6 Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Thu, 7 Jul 2016 16:23:25 +0000 Subject: [PATCH 53/79] androidsdk: fix rpath that includes 32-bit zlib --- pkgs/development/mobile/androidenv/androidndk.nix | 2 +- pkgs/development/mobile/androidenv/build-tools.nix | 8 ++++---- pkgs/development/mobile/androidenv/platform-tools.nix | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/mobile/androidenv/androidndk.nix b/pkgs/development/mobile/androidenv/androidndk.nix index 63ea07b78a6..457dbdb8a85 100644 --- a/pkgs/development/mobile/androidenv/androidndk.nix +++ b/pkgs/development/mobile/androidenv/androidndk.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { \( -type f -a -name "*.so*" \) -o \ \( -type f -a -perm -0100 \) \ \) -exec patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-*so.? \ - --set-rpath ${stdenv.lib.makeLibraryPath [ zlib ncurses ]} {} \; + --set-rpath ${stdenv.lib.makeLibraryPath [ zlib.out ncurses ]} {} \; # fix ineffective PROGDIR / MYNDKDIR determination for i in ndk-build ndk-gdb ndk-gdb-py do diff --git a/pkgs/development/mobile/androidenv/build-tools.nix b/pkgs/development/mobile/androidenv/build-tools.nix index 1f4bf6e4cfd..17de403abf2 100644 --- a/pkgs/development/mobile/androidenv/build-tools.nix +++ b/pkgs/development/mobile/androidenv/build-tools.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { cd ${version} # Patch the interpreter - for i in aapt aidl bcc_compat dexdump llvm-rs-cc + for i in aidl bcc_compat dexdump llvm-rs-cc do patchelf --set-interpreter ${stdenv_32bit.cc.libc.out}/lib/ld-linux.so.2 $i done @@ -52,16 +52,16 @@ stdenv.mkDerivation rec { done # These binaries also need zlib in addition to libstdc++ - for i in arm-linux-androideabi-ld i686-linux-android-ld mipsel-linux-android-ld split-select zipalign + for i in arm-linux-androideabi-ld i686-linux-android-ld mipsel-linux-android-ld split-select aapt zipalign do patchelf --set-interpreter ${stdenv_32bit.cc.libc.out}/lib/ld-linux.so.2 $i - patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib:`pwd`/lib $i + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit.out}/lib:`pwd`/lib $i done # These binaries need to find libstdc++, libgcc_s, and zlib for i in aapt dexdump do - patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib:`pwd`/lib $i + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit.out}/lib:`pwd`/lib $i done ''} diff --git a/pkgs/development/mobile/androidenv/platform-tools.nix b/pkgs/development/mobile/androidenv/platform-tools.nix index 1654b13d13b..973fb37d9a6 100644 --- a/pkgs/development/mobile/androidenv/platform-tools.nix +++ b/pkgs/development/mobile/androidenv/platform-tools.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { for i in etc1tool do patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i - patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib:`pwd`/lib $i + patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit.out}/lib:`pwd`/lib $i done ''} From 746de51073e0e2782d6c01e658a547eaa5cb6b3b Mon Sep 17 00:00:00 2001 From: Miguel Madrid Date: Thu, 7 Jul 2016 19:13:26 +0200 Subject: [PATCH 54/79] unrar: 5.3.11 -> 5.4.2 --- pkgs/tools/archivers/unrar/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/archivers/unrar/default.nix b/pkgs/tools/archivers/unrar/default.nix index f2fdc71dc86..ccc87a231a1 100644 --- a/pkgs/tools/archivers/unrar/default.nix +++ b/pkgs/tools/archivers/unrar/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "unrar-${version}"; - version = "5.3.11"; + version = "5.4.2"; src = fetchurl { url = "http://www.rarlab.com/rar/unrarsrc-${version}.tar.gz"; - sha256 = "0qw77gvr57azjbn76cjlm4sv1hf2hh90g7n7n33gfvlpnbs7mf3p"; + sha256 = "1ggiad65j8kzhixrgvmda32khaqs8p0pqcdpwarn1b6vmfl5y7fr"; }; postPatch = '' From a2ebf45b4708d6103c77734e04d9067e57ea5cd5 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 7 Jul 2016 19:34:58 +0200 Subject: [PATCH 55/79] grsecurity: 4.5.7-201606302132 -> 4.6.3-201607070721 --- pkgs/os-specific/linux/kernel/linux-grsecurity.nix | 6 +++--- pkgs/os-specific/linux/kernel/patches.nix | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-grsecurity.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity.nix index 63db1779014..d5ea9039891 100644 --- a/pkgs/os-specific/linux/kernel/linux-grsecurity.nix +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.5.7"; - extraMeta.branch = "4.5"; + version = "4.6.3"; + extraMeta.branch = "4.6"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0azvh7lf9kak1xcs5f9smlvx4gkf45vyandizmxhx0zyjlhacw60"; + sha256 = "0rq9cciabw5gfi2z30fcwh6z4zm2fgp938xmblfw59hyjj98h60k"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index d8b6095d188..103e2235532 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -93,9 +93,9 @@ rec { grsecurity_4_4 = throw "grsecurity stable is no longer supported"; grsecurity_testing = grsecPatch - { kver = "4.5.7"; - grrev = "201606302132"; - sha256 = "1zqkdnfqzzghnrrkvcryibxxipq46bqdan37np5hrqvxdbl5xm0z"; + { kver = "4.6.3"; + grrev = "201607070721"; + sha256 = "1858zc77x1qbwwfhjlmffd21w4adsw9f3sycg6bksw2jxrhlzww5"; }; # This patch relaxes grsec constraints on the location of usermode helpers, From 41a8dc7f0b5bc829b51fcb154a3750d97bdc6d87 Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Fri, 8 Jul 2016 02:40:33 +0300 Subject: [PATCH 56/79] ycmd: claim mainteinership I've added the package originally. --- pkgs/development/tools/misc/ycmd/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/misc/ycmd/default.nix b/pkgs/development/tools/misc/ycmd/default.nix index df7cc3e279a..5a56933d3ca 100644 --- a/pkgs/development/tools/misc/ycmd/default.nix +++ b/pkgs/development/tools/misc/ycmd/default.nix @@ -28,10 +28,11 @@ stdenv.mkDerivation rec { ln -s $out/lib/ycmd/ycmd/__main__.py $out/bin/ycmd ''; - meta = { + meta = with stdenv.lib; { description = "A code-completion and comprehension server"; - homepage = "https://github.com/Valloric/ycmd"; - license = stdenv.lib.licenses.gpl3; - platforms = stdenv.lib.platforms.all; + homepage = https://github.com/Valloric/ycmd; + license = licenses.gpl3; + maintainers = with maintainers; [ rasendubi ]; + platforms = platforms.all; }; } From 9e6aac9cb0bb23d49b44af3c36f78e05849cdae0 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 6 Jul 2016 19:49:49 +0300 Subject: [PATCH 57/79] bandwidth: 1.2.0 -> 1.3.1 --- pkgs/tools/misc/bandwidth/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/bandwidth/default.nix b/pkgs/tools/misc/bandwidth/default.nix index 853c619859d..eb0a0d2b60b 100644 --- a/pkgs/tools/misc/bandwidth/default.nix +++ b/pkgs/tools/misc/bandwidth/default.nix @@ -11,12 +11,12 @@ let in stdenv.mkDerivation rec { name = "bandwidth-${version}"; - version = "1.2.0"; + version = "1.3.1"; src = fetchurl { - url = "https://mutineer.org/file.php?id=ee10698c6a675ece26f08ddb5e6001323d6305c1&p=bandwidth"; + url = "https://mutineer.org/file.php?id=284ebee21bde256fd0daeae91242c2b73d9cf1df&p=bandwidth"; name = "${name}.tar.gz"; - sha256 = "1jq6a4n77gcx68bkr8l79agsmgv8saw9nv183297gnah1g67nvw6"; + sha256 = "13a0mxrkybpwiynv4cj8wsy8zl5xir5xi1a03fzam5gw815dj4am"; }; buildInputs = [ nasm ]; From 21253ac835166b6204f1b8ee7bea13d797c0ce00 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 5 May 2016 11:38:33 +0300 Subject: [PATCH 58/79] lcov: 1.10 -> 1.12; maintain --- .../tools/analysis/lcov/default.nix | 21 ++------ .../tools/analysis/lcov/freebsd-install.patch | 13 ----- .../analysis/lcov/lcov-except-unreach.patch | 13 ----- .../tools/analysis/lcov/no-warn-missing.patch | 54 ------------------- 4 files changed, 5 insertions(+), 96 deletions(-) delete mode 100644 pkgs/development/tools/analysis/lcov/freebsd-install.patch delete mode 100644 pkgs/development/tools/analysis/lcov/lcov-except-unreach.patch delete mode 100644 pkgs/development/tools/analysis/lcov/no-warn-missing.patch diff --git a/pkgs/development/tools/analysis/lcov/default.nix b/pkgs/development/tools/analysis/lcov/default.nix index 10cdf01103a..daefafa9e6a 100644 --- a/pkgs/development/tools/analysis/lcov/default.nix +++ b/pkgs/development/tools/analysis/lcov/default.nix @@ -1,31 +1,20 @@ {stdenv, fetchurl, perl}: stdenv.mkDerivation rec { - name = "lcov-1.10"; + name = "lcov-1.12"; src = fetchurl { url = "mirror://sourceforge/ltp/${name}.tar.gz"; - sha256 = "13xq2ln4jjasslqzzhr5g11q1c19gwpng1jphzbzmylmrjz62ila"; + sha256 = "19wfifdpxxivhq9adbphanjfga9bg9spms9v7c3589wndjff8x5l"; }; - patches = - [ ./lcov-except-unreach.patch ./no-warn-missing.patch ] - ++ stdenv.lib.optional stdenv.isFreeBSD ./freebsd-install.patch; + buildInputs = [ perl ]; preBuild = '' + patchShebangs bin/ makeFlagsArray=(PREFIX=$out BIN_DIR=$out/bin MAN_DIR=$out/share/man) ''; - preInstall = '' - substituteInPlace bin/install.sh --replace /bin/bash $shell - ''; - - postInstall = '' - for i in "$out/bin/"*; do - substituteInPlace $i --replace /usr/bin/perl ${perl}/bin/perl - done - ''; - meta = with stdenv.lib; { description = "Code coverage tool that enhances GNU gcov"; @@ -41,7 +30,7 @@ stdenv.mkDerivation rec { homepage = http://ltp.sourceforge.net/coverage/lcov.php; license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ maintainers.mornfall ]; + maintainers = with maintainers; [ dezgeg mornfall ]; platforms = platforms.all; }; } diff --git a/pkgs/development/tools/analysis/lcov/freebsd-install.patch b/pkgs/development/tools/analysis/lcov/freebsd-install.patch deleted file mode 100644 index 7ca2608cf5e..00000000000 --- a/pkgs/development/tools/analysis/lcov/freebsd-install.patch +++ /dev/null @@ -1,13 +0,0 @@ -FreeBSD's `install' doesn't support `-D'. Thus, use GNU install instead, -since `stdenv-native' assumes that `ginstall' is available. - ---- lcov-1.9/bin/install.sh 2010-08-06 13:05:17.000000000 +0200 -+++ lcov-1.9/bin/install.sh 2012-03-02 16:53:28.000000000 +0100 -@@ -34,6 +34,6 @@ - local TARGET=$2 - local PARAMS=$3 - -- install -p -D $PARAMS $SOURCE $TARGET -+ ginstall -p -D $PARAMS $SOURCE $TARGET - } - diff --git a/pkgs/development/tools/analysis/lcov/lcov-except-unreach.patch b/pkgs/development/tools/analysis/lcov/lcov-except-unreach.patch deleted file mode 100644 index 6c8d8664d02..00000000000 --- a/pkgs/development/tools/analysis/lcov/lcov-except-unreach.patch +++ /dev/null @@ -1,13 +0,0 @@ -http://ltp.cvs.sourceforge.net/viewvc/ltp/utils/analysis/lcov/bin/geninfo?r1=1.117&r2=1.118&view=patch - ---- a/bin/geninfo 2012/10/10 08:36:16 1.117 -+++ b/bin/geninfo 2012/11/13 09:58:53 1.118 -@@ -1833,7 +1833,7 @@ - push(@result, 0); - } else { - # Check for zero count -- if ($count eq "#####") { -+ if ($count =~ /^[#=]/) { - $count = 0; - } - push(@result, 1); diff --git a/pkgs/development/tools/analysis/lcov/no-warn-missing.patch b/pkgs/development/tools/analysis/lcov/no-warn-missing.patch deleted file mode 100644 index fa1f476fba0..00000000000 --- a/pkgs/development/tools/analysis/lcov/no-warn-missing.patch +++ /dev/null @@ -1,54 +0,0 @@ -http://ltp.cvs.sourceforge.net/viewvc/ltp/utils/analysis/lcov/bin/geninfo?view=log - ---- a/bin/geninfo 2013/01/10 09:02:32 1.119 -+++ b/bin/geninfo 2013/02/22 14:09:08 1.120 -@@ -864,7 +864,6 @@ - my $source; # gcov source header information - my $object; # gcov object header information - my @matches; # List of absolute paths matching filename -- my @unprocessed; # List of unprocessed source code files - my $base_dir; # Base directory for current file - my @tmp_links; # Temporary links to be cleaned up - my @result; -@@ -1060,7 +1059,6 @@ - - # Traverse the list of generated .gcov files and combine them into a - # single .info file -- @unprocessed = keys(%{$instr}); - foreach $gcov_file (sort(@gcov_list)) - { - my $i; -@@ -1143,16 +1141,6 @@ - \@matches, \@gcov_content); - } - -- # Remove processed file from list -- for ($index = scalar(@unprocessed) - 1; $index >= 0; $index--) -- { -- if ($unprocessed[$index] eq $source_filename) -- { -- splice(@unprocessed, $index, 1); -- last; -- } -- } -- - # Skip external files if requested - if (!$opt_external) { - if (is_external($source_filename)) { -@@ -1297,16 +1285,6 @@ - unlink($gcov_file); - } - -- # Check for files which show up in the graph file but were never -- # processed -- if (@unprocessed && @gcov_list) -- { -- foreach (@unprocessed) -- { -- warn("WARNING: no data found for $_\n"); -- } -- } -- - if (!($output_filename && ($output_filename eq "-"))) - { - close(INFO_HANDLE); From 56791034f6e9ae696d258e0f28460a65858bcfad Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Fri, 8 Jul 2016 11:55:00 +0300 Subject: [PATCH 59/79] libpng: 1.2.55 > 1.2.56 CVE-2015-8540 (#16793) --- pkgs/development/libraries/libpng/12.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libpng/12.nix b/pkgs/development/libraries/libpng/12.nix index 01e90cb1913..e52f209dd3c 100644 --- a/pkgs/development/libraries/libpng/12.nix +++ b/pkgs/development/libraries/libpng/12.nix @@ -3,11 +3,11 @@ assert !(stdenv ? cross) -> zlib != null; stdenv.mkDerivation rec { - name = "libpng-1.2.55"; + name = "libpng-1.2.56"; src = fetchurl { url = "mirror://sourceforge/libpng/${name}.tar.xz"; - sha256 = "0zkra0b9lrpk2axassdgkqinmc2ba6b473sm52xbpyknaqs2fljy"; + sha256 = "1ghd03p353x0vi4dk83n1nlldg11w7vqdk3f99rkgfb82ic59ki4"; }; outputs = [ "dev" "out" "man" ]; From 5abd5603ed0a72a94050175f7b7b34008aec4174 Mon Sep 17 00:00:00 2001 From: Ram Kromberg Date: Fri, 8 Jul 2016 13:04:34 +0300 Subject: [PATCH 60/79] lzfse: init at 2016-06-21 --- pkgs/tools/compression/lzfse/default.nix | 30 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/tools/compression/lzfse/default.nix diff --git a/pkgs/tools/compression/lzfse/default.nix b/pkgs/tools/compression/lzfse/default.nix new file mode 100644 index 00000000000..fca1a433ff3 --- /dev/null +++ b/pkgs/tools/compression/lzfse/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchFromGitHub }: + +stdenv.mkDerivation rec { + name = "lzfse-${version}"; + version = "2016-06-21"; + + src = fetchFromGitHub { + owner = "lzfse"; + repo = "lzfse"; + rev = "45912281e3945a09c6ebfa8c6629f6906a99fc29"; + sha256 = "1wbh3x874fjn548g1hw4bm7lkk60vlvy8ph0wsjkzcx8873hwj7h"; + }; + + makeFlags = [ "INSTALL_PREFIX=$(out)" ]; + + enableParallelBuilding = false; #bug + + meta = with stdenv.lib; { + homepage = https://github.com/lzfse/lzfse; + description = "a reference C implementation of the LZFSE compressor"; + longDescription = '' + This is a reference C implementation of the LZFSE compressor introduced in the Compression library with OS X 10.11 and iOS 9. + LZFSE is a Lempel-Ziv style data compression algorithm using Finite State Entropy coding. + It targets similar compression rates at higher compression and decompression speed compared to deflate using zlib. + ''; + platforms = platforms.linux; + license = licenses.bsd3; + maintainers = with maintainers; [ ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8e3db24e41a..5721858537f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2424,6 +2424,8 @@ in lxc = callPackage ../os-specific/linux/lxc { }; lxd = callPackage ../tools/admin/lxd { }; + lzfse = callPackage ../tools/compression/lzfse { }; + lzip = callPackage ../tools/compression/lzip { }; lzma = xz; From b732af00bb42c7c60f32d4645b5f0b424c72b9f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Fri, 8 Jul 2016 14:54:44 +0200 Subject: [PATCH 61/79] pythonPackages.breathe: init at 4.2.0 It seems to work OK, but I'm not good at packaging python stuff. --- .../python-modules/breathe/default.nix | 21 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/development/python-modules/breathe/default.nix diff --git a/pkgs/development/python-modules/breathe/default.nix b/pkgs/development/python-modules/breathe/default.nix new file mode 100644 index 00000000000..bf53d330245 --- /dev/null +++ b/pkgs/development/python-modules/breathe/default.nix @@ -0,0 +1,21 @@ +{ lib, fetchurl, buildPythonPackage, docutils, six, sphinx }: + +buildPythonPackage rec { + name = "breathe-${version}"; + version = "4.2.0"; + + src = fetchurl { + url = "mirror://pypi/b/breathe/${name}.tar.gz"; + md5 = "e35f6ce54485663857129370047f6057"; + }; + + propagatedBuildInputs = [ docutils six sphinx ]; + + meta = { + homepage = https://github.com/michaeljones/breathe; + license = lib.licenses.bsd3; + description = "Sphinx Doxygen renderer"; + inherit (sphinx.meta) platforms; + }; +} + diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 472a27bf051..fea17ed1b01 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -146,6 +146,8 @@ in modules // { blivet = callPackage ../development/python-modules/blivet { }; + breathe = callPackage ../development/python-modules/breathe { }; + bugseverywhere = callPackage ../applications/version-management/bugseverywhere {}; dbf = buildPythonPackage rec { From 61118d5936aa2f8b650f301dfbd24c37a1fc3534 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 8 Jul 2016 13:23:40 +0200 Subject: [PATCH 62/79] pythonPackages.prompt_toolkit: fix tests --- pkgs/top-level/python-packages.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fea17ed1b01..142095bb536 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17037,9 +17037,10 @@ in modules // { }; checkPhase = '' rm prompt_toolkit/win32_types.py + py.test -k 'not test_pathcompleter_can_expanduser' ''; - buildInputs = with self; [ jedi ipython ]; + buildInputs = with self; [ pytest ]; propagatedBuildInputs = with self; [ docopt six wcwidth pygments ]; meta = { From 188422b7736ff354065549e506db1e718919cd8d Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 8 Jul 2016 13:24:12 +0200 Subject: [PATCH 63/79] pythonPackages.ipython: 4.1.2 -> 5.0.0 --- pkgs/top-level/python-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 142095bb536..00f1e031b54 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11348,12 +11348,12 @@ in modules // { }; ipython = buildPythonPackage rec { - version = "4.1.2"; + version = "5.0.0"; name = "ipython-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/i/ipython/${name}.tar.gz"; - sha256 = "14hnf3m087z39ndn5irj1ficc6l197bmdj6fpvz8bwi7la99cbq5"; + sha256 = "7ec0737169c74056c7fc8298246db5478a2d6c90cfd19c3253222112357545df"; }; prePatch = stdenv.lib.optionalString stdenv.isDarwin '' @@ -11363,8 +11363,8 @@ in modules // { buildInputs = with self; [ nose pkgs.glibcLocales pygments ] ++ optionals isPy27 [mock]; propagatedBuildInputs = with self; - [decorator pickleshare simplegeneric traitlets readline requests2 pexpect sqlite3] - ++ optionals stdenv.isDarwin [appnope gnureadline]; + [decorator pickleshare prompt_toolkit simplegeneric traitlets requests2 pexpect sqlite3] + ++ optionals stdenv.isDarwin [appnope]; LC_ALL="en_US.UTF-8"; From f313f9356c380c7613ab4597562412e92c0bdbd1 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 8 Jul 2016 13:24:25 +0200 Subject: [PATCH 64/79] pythonPackages.jupyter_console: 4.1.1 -> 5.0.0 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 00f1e031b54..7fe5dfa5dcb 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6972,12 +6972,12 @@ in modules // { }; jupyter_console = buildPythonPackage rec { - version = "4.1.1"; + version = "5.0.0"; name = "jupyter_console-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/j/jupyter_console/${name}.tar.gz"; - sha256 = "1qsa9h7db8qzd4hg9l5mfl8299y4i7jkd6p3vpksk3r5ip8wym6p"; + sha256 = "7ddfc8cc49921b0ed852500928922e637f9188358c94b5c76339a5a8f9ac4c11"; }; buildInputs = with self; [ nose ]; From f77af9aa5e2504c4b4597e25e922f11df95a0e64 Mon Sep 17 00:00:00 2001 From: roblabla Date: Fri, 8 Jul 2016 15:05:05 +0200 Subject: [PATCH 65/79] matrix-synapse: 0.16.1 -> 0.16.1-r1 --- pkgs/servers/matrix-synapse/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix index 2881b2f3805..95d32aa1bdd 100644 --- a/pkgs/servers/matrix-synapse/default.nix +++ b/pkgs/servers/matrix-synapse/default.nix @@ -12,13 +12,13 @@ let in buildPythonApplication rec { name = "matrix-synapse-${version}"; - version = "0.16.1"; + version = "0.16.1-r1"; src = fetchFromGitHub { owner = "matrix-org"; repo = "synapse"; rev = "v${version}"; - sha256 = "166y1f74wjkrpks88cp67w33rcs02b4dk815yj93lfla1k9ypg6b"; + sha256 = "0flgaa26j9gga9a9h67b0q3yi0mpnbrjik55220cvvzhy9fnvwa9"; }; patches = [ ./matrix-synapse.patch ]; From 5f3c4bd11ebdd88d56dbf81ebb997832c7b82f3b Mon Sep 17 00:00:00 2001 From: Anders Lundstedt Date: Fri, 8 Jul 2016 16:01:35 +0200 Subject: [PATCH 66/79] nixos: fix avahi connectivity for shairport-sync module The shairport-sync service currently fails to start with the error shairport avahi_entry_group_new failed This problem seems to have been introduced by cdd7310a503481e3c40266be45b6b8256d95ecbd After some trial and error I concluded that the attached commit is a minimal fix. --- nixos/modules/services/networking/shairport-sync.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/networking/shairport-sync.nix b/nixos/modules/services/networking/shairport-sync.nix index a523e66d09b..908de9efd6f 100644 --- a/nixos/modules/services/networking/shairport-sync.nix +++ b/nixos/modules/services/networking/shairport-sync.nix @@ -52,6 +52,8 @@ in config = mkIf config.services.shairport-sync.enable { services.avahi.enable = true; + services.avahi.publish.enable = true; + services.avahi.publish.userServices = true; users.extraUsers = singleton { name = cfg.user; From 75492617979f9bd11889bc980024ee62acdf52e8 Mon Sep 17 00:00:00 2001 From: Nicolas Petton Date: Fri, 15 Apr 2016 10:49:43 +0200 Subject: [PATCH 67/79] gnome-shell: add missing python3 deps for gnome-shell-extension-tool Fix #14651 --- .../gnome-3/3.20/core/gnome-shell/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-shell/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-shell/default.nix index 11d78cd6132..d0d7bceef61 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-shell/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-shell/default.nix @@ -1,5 +1,5 @@ { fetchurl, stdenv, pkgconfig, gnome3, json_glib, libcroco, intltool, libsecret -, python3, libsoup, polkit, clutter, networkmanager, docbook_xsl, docbook_xsl_ns, at_spi2_core +, python3Packages, libsoup, polkit, clutter, networkmanager, docbook_xsl , docbook_xsl_ns, at_spi2_core , libstartup_notification, telepathy_glib, telepathy_logger, libXtst, p11_kit, unzip , sqlite, libgweather, libcanberra_gtk3 , libpulseaudio, libical, libtool, nss, gobjectIntrospection, gstreamer, makeWrapper @@ -15,16 +15,18 @@ stdenv.mkDerivation rec { buildInputs = with gnome3; [ gsettings_desktop_schemas gnome_keyring gnome-menus glib gcr json_glib accountsservice - libcroco intltool libsecret pkgconfig python3 libsoup polkit libcanberra gdk_pixbuf librsvg + libcroco intltool libsecret pkgconfig libsoup polkit libcanberra gdk_pixbuf librsvg clutter networkmanager libstartup_notification telepathy_glib docbook_xsl docbook_xsl_ns libXtst p11_kit networkmanagerapplet gjs mutter libpulseaudio caribou evolution_data_server - libical libtool nss gobjectIntrospection gtk gstreamer makeWrapper gdm + libical libtool nss gtk gstreamer makeWrapper gdm libcanberra_gtk3 gnome_control_center defaultIconTheme sqlite gnome3.gnome-bluetooth libgweather # not declared at build time, but typelib is needed at runtime gnome3.gnome-clocks # schemas needed at_spi2_core upower ibus gnome_session gnome_desktop telepathy_logger gnome3.gnome_settings_daemon ]; + propagatedBuildInputs = [ python3Packages.pygobject3 python3Packages.python gobjectIntrospection ]; + installFlags = [ "keysdir=$(out)/share/gnome-control-center/keybindings" ]; preBuild = '' @@ -40,6 +42,9 @@ stdenv.mkDerivation rec { --prefix XDG_DATA_DIRS : "${gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS" \ --suffix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" + wrapProgram "$out/bin/gnome-shell-extension-tool" \ + --prefix PYTHONPATH : "${python3Packages.pygobject3}/${python3Packages.python.sitePackages}:$PYTHONPATH" + wrapProgram "$out/libexec/gnome-shell-calendar-server" \ --prefix XDG_DATA_DIRS : "${evolution_data_server}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" From dbf5342b640b08d9d61603ecbfc1ac916c31f099 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 25 May 2016 18:15:21 +0200 Subject: [PATCH 68/79] gnome3.libcroco: 0.6.8 -> 0.6.11 --- pkgs/desktops/gnome-3/3.20/core/libcroco/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/libcroco/default.nix b/pkgs/desktops/gnome-3/3.20/core/libcroco/default.nix index 76d9118c4b9..563a18e510f 100644 --- a/pkgs/desktops/gnome-3/3.20/core/libcroco/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/libcroco/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, libxml2, glib }: stdenv.mkDerivation rec { - name = "libcroco-0.6.8"; + name = "libcroco-0.6.11"; src = fetchurl { url = "mirror://gnome/sources/libcroco/0.6/${name}.tar.xz"; - sha256 = "0w453f3nnkbkrly7spx5lx5pf6mwynzmd5qhszprq8amij2invpa"; + sha256 = "0mm0wldbi40am5qn0nv7psisbg01k42rwzjxl3gv11l5jj554aqk"; }; outputs = [ "dev" "out" ]; From ed9f4e16f3b914c63ff0b939dc0df4a683d5f2ff Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Wed, 13 Apr 2016 14:13:42 +0200 Subject: [PATCH 69/79] pidgin-im-gnome-shell-extension: init at 1.0 --- pkgs/desktops/gnome-3/3.20/default.nix | 2 + .../gnome-3/3.20/misc/pidgin/default.nix | 42 +++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix diff --git a/pkgs/desktops/gnome-3/3.20/default.nix b/pkgs/desktops/gnome-3/3.20/default.nix index 4e00db3962e..fe122d75e97 100644 --- a/pkgs/desktops/gnome-3/3.20/default.nix +++ b/pkgs/desktops/gnome-3/3.20/default.nix @@ -385,6 +385,8 @@ let gpaste = callPackage ./misc/gpaste { }; + pidgin-im-gnome-shell-extension = callPackage ./misc/pidgin { }; + gtkhtml = callPackage ./misc/gtkhtml { }; pomodoro = callPackage ./misc/pomodoro { }; diff --git a/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix b/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix new file mode 100644 index 00000000000..a2d8d146579 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix @@ -0,0 +1,42 @@ +{ stdenv, fetchFromGitHub, glib }: + +stdenv.mkDerivation rec { + version = "1.0"; + basename = "pidgin-im-gnome-shell-extension"; + name = "${basename}-${version}"; + + src = fetchFromGitHub { + owner = "muffinmad"; + repo = "${basename}"; + rev = "v${version}"; + sha256 = "0vj4w9qqx9gads24w3f6v6mfh5va28bp8rc4w7lz0vhp7njmy1yy"; + }; + + buildInputs = [ glib ]; + + configurePhase = ""; + buildPhase = ""; + installPhase = '' + share_dir="$prefix/share" + extensions_dir="$share_dir/gnome-shell/extensions/pidgin@muffinmad" + mkdir -p "$extensions_dir" + mv *.js metadata.json dbus.xml gnome-shell-extension-pidgin.pot "$extensions_dir" + + schemas_dir="$share_dir/gsettings-schemas/${name}/glib-2.0/schemas" + mkdir -p "$schemas_dir" + mv schemas/* "$schemas_dir" # fix Emacs syntax highlighting: */ + ${glib}/bin/glib-compile-schemas "$schemas_dir" + + locale_dir="$share_dir/locale" + mkdir -p "$locale_dir" + mv locale/* $locale_dir # fix Emacs syntax highlighting: */ + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/muffinmad/pidgin-im-gnome-shell-extension; + description = "Make Pidgin IM conversations appear in the Gnome Shell message tray"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ DamienCassou ]; + }; +} From 8cad701fc529a641bac8d3255440ebf9943776b8 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sat, 16 Apr 2016 19:57:59 +0300 Subject: [PATCH 70/79] treewide: Make explicit that 'dev' output of glib is used --- pkgs/desktops/gnome-3/3.20/apps/cheese/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/apps/gnome-documents/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/core/gnome-desktop/default.nix | 2 +- .../gnome-3/3.20/core/gnome-settings-daemon/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/apps/cheese/default.nix b/pkgs/desktops/gnome-3/3.20/apps/cheese/default.nix index db50656cf37..b5f70d84e52 100644 --- a/pkgs/desktops/gnome-3/3.20/apps/cheese/default.nix +++ b/pkgs/desktops/gnome-3/3.20/apps/cheese/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0"; meta = with stdenv.lib; { homepage = https://wiki.gnome.org/Apps/Cheese; diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-documents/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-documents/default.nix index 7f1f70114b7..5daa7277f7b 100644 --- a/pkgs/desktops/gnome-3/3.20/apps/gnome-documents/default.nix +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-documents/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; preFixup = '' - substituteInPlace $out/bin/gnome-documents --replace gapplication "${glib}/bin/gapplication" + substituteInPlace $out/bin/gnome-documents --replace gapplication "${glib.dev}/bin/gapplication" gappsWrapperArgs+=(--run 'if [ -z "$XDG_CACHE_DIR" ]; then XDG_CACHE_DIR=$HOME/.cache; fi; if [ -w "$XDG_CACHE_DIR/.." ]; then mkdir -p "$XDG_CACHE_DIR/gnome-documents"; fi') ''; diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-desktop/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-desktop/default.nix index bf0ccd0224e..7265f09731f 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-desktop/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-desktop/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; # this should probably be setuphook for glib - NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0"; enableParallelBuilding = true; diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/default.nix index 99e1f596f18..2a93328d8ca 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; # fatal error: gio/gunixfdlist.h: No such file or directory - NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0"; buildInputs = with gnome3; [ intltool pkgconfig ibus gtk glib gsettings_desktop_schemas networkmanager diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix index 49ad40912c6..31351194fb0 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { postInstall = '' mkdir -p $out/share/gsettings-schemas/$name mv $out/share/glib-2.0 $out/share/gsettings-schemas/$name - ${glib}/bin/glib-compile-schemas $out/share/gsettings-schemas/$name/glib-2.0/schemas + ${glib.dev}/bin/glib-compile-schemas $out/share/gsettings-schemas/$name/glib-2.0/schemas ''; preFixup = '' diff --git a/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix b/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix index a2d8d146579..64f7920d9af 100644 --- a/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix +++ b/pkgs/desktops/gnome-3/3.20/misc/pidgin/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { schemas_dir="$share_dir/gsettings-schemas/${name}/glib-2.0/schemas" mkdir -p "$schemas_dir" mv schemas/* "$schemas_dir" # fix Emacs syntax highlighting: */ - ${glib}/bin/glib-compile-schemas "$schemas_dir" + ${glib.dev}/bin/glib-compile-schemas "$schemas_dir" locale_dir="$share_dir/locale" mkdir -p "$locale_dir" From 43d48fedcc86fac2fa998386cddf78873ae6c823 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sat, 16 Apr 2016 19:59:30 +0300 Subject: [PATCH 71/79] treewide: Make explicit that 'dev' output of gnome3.glib is used --- pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/apps/gnome-photos/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/apps/seahorse/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/core/baobab/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/core/evince/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/core/gnome-calculator/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/core/gnome-system-log/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/core/mutter/default.nix | 2 +- pkgs/desktops/gnome-3/3.20/core/totem/default.nix | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/default.nix index cbd5a84bdb5..5fe6583660c 100644 --- a/pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/default.nix +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; - NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0"; buildInputs = [ pkgconfig gtk3 wrapGAppsHook intltool evolution_data_server diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/default.nix index 09e0d9505ff..df7e23ef9d4 100644 --- a/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/default.nix +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { # doCheck = true; - NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0"; buildInputs = [ pkgconfig gtk3 glib intltool itstool gegl babl gnome3.libgdata gnome3.gsettings_desktop_schemas makeWrapper gmp libmediaart diff --git a/pkgs/desktops/gnome-3/3.20/apps/seahorse/default.nix b/pkgs/desktops/gnome-3/3.20/apps/seahorse/default.nix index 3b78babadd9..49c48a6b962 100644 --- a/pkgs/desktops/gnome-3/3.20/apps/seahorse/default.nix +++ b/pkgs/desktops/gnome-3/3.20/apps/seahorse/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; - NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0"; buildInputs = [ pkgconfig gtk3 glib intltool itstool gnome3.gcr gnome3.gsettings_desktop_schemas makeWrapper gnupg diff --git a/pkgs/desktops/gnome-3/3.20/core/baobab/default.nix b/pkgs/desktops/gnome-3/3.20/core/baobab/default.nix index 2ff85662bbb..874c7280949 100644 --- a/pkgs/desktops/gnome-3/3.20/core/baobab/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/baobab/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { doCheck = true; - NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0"; propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; diff --git a/pkgs/desktops/gnome-3/3.20/core/evince/default.nix b/pkgs/desktops/gnome-3/3.20/core/evince/default.nix index d0857a1d32a..7629e5b5655 100644 --- a/pkgs/desktops/gnome-3/3.20/core/evince/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/evince/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { (if supportXPS then "--enable-xps" else "--disable-xps") ]; - NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0"; preConfigure = with stdenv.lib; optionalString doCheck '' diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-calculator/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-calculator/default.nix index 5458f933a75..e1b81339e91 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-calculator/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-calculator/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; - NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0"; propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/default.nix index 1d1f9d18c56..8421bb362c3 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { doCheck = true; - NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0"; propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; propagatedBuildInputs = [ gdk_pixbuf gnome3.defaultIconTheme librsvg ]; diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/default.nix index 3f9f653bdba..c329d68674a 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { doCheck = true; - NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0"; propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/default.nix index 54767dbc4c5..d0ec2307a85 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { doCheck = true; - NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0"; propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/default.nix index 763fc990bda..72aa97fa6b6 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { doCheck = true; - NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0"; propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; propagatedBuildInputs = [ gdk_pixbuf gnome3.defaultIconTheme librsvg ]; diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-system-log/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-system-log/default.nix index 716f92a072d..271f23e6920 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-system-log/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-system-log/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { doCheck = true; - NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0"; propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; propagatedBuildInputs = [ gdk_pixbuf gnome3.defaultIconTheme librsvg ]; diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix index 31351194fb0..977c5800aeb 100644 --- a/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { doCheck = true; - NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0"; preConfigure = '' sed -e 's,^LoadModule dnssd_module.\+,LoadModule dnssd_module ${mod_dnssd}/modules/mod_dnssd.so,' -i data/dav_user_2.2.conf diff --git a/pkgs/desktops/gnome-3/3.20/core/mutter/default.nix b/pkgs/desktops/gnome-3/3.20/core/mutter/default.nix index dd08a96cc23..a128990b402 100644 --- a/pkgs/desktops/gnome-3/3.20/core/mutter/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/mutter/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; # fatal error: gio/gunixfdlist.h: No such file or directory - NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0"; configureFlags = "--with-x --disable-static --enable-shape --enable-sm --enable-startup-notification --enable-xsync --enable-verbose-mode --with-libcanberra"; diff --git a/pkgs/desktops/gnome-3/3.20/core/totem/default.nix b/pkgs/desktops/gnome-3/3.20/core/totem/default.nix index bce3bd0ceba..eb490ad35d0 100644 --- a/pkgs/desktops/gnome-3/3.20/core/totem/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/totem/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0"; propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; From 8c3e4826ce4117a1bf1fde7f2eead4598c102db4 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Sat, 16 Apr 2016 20:00:29 +0300 Subject: [PATCH 72/79] treewide: Make explicit that 'dev' output of gnome3.libsoup is used --- pkgs/desktops/gnome-3/3.20/core/libgdata/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/libgdata/default.nix b/pkgs/desktops/gnome-3/3.20/core/libgdata/default.nix index 0a5fc0f8f60..e455be07bdf 100644 --- a/pkgs/desktops/gnome-3/3.20/core/libgdata/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/libgdata/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { sha256 = "1xniw4y90hbk9fa548pa9pfclibw7amr2f458lfh16jdzq7gw5cz"; }; - NIX_CFLAGS_COMPILE = "-I${gnome3.libsoup}/include/libsoup-gnome-2.4/ -I${gnome3.gcr}/include/gcr-3 -I${gnome3.gcr}/include/gck-1"; + NIX_CFLAGS_COMPILE = "-I${gnome3.libsoup.dev}/include/libsoup-gnome-2.4/ -I${gnome3.gcr}/include/gcr-3 -I${gnome3.gcr}/include/gck-1"; buildInputs = with gnome3; [ pkgconfig libsoup intltool libxml2 glib gobjectIntrospection From 1ef27666233ab90352a2a334efaea9e5c734b892 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Thu, 14 Apr 2016 22:18:56 +0200 Subject: [PATCH 73/79] totem: Add python3 dependencies for plugins --- .../gnome-3/3.20/core/totem/default.nix | 31 +++++++++---------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/totem/default.nix b/pkgs/desktops/gnome-3/3.20/core/totem/default.nix index eb490ad35d0..194b4aca438 100644 --- a/pkgs/desktops/gnome-3/3.20/core/totem/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/totem/default.nix @@ -1,8 +1,8 @@ { stdenv, intltool, fetchurl, gst_all_1 -, clutter_gtk, clutter-gst, pygobject3, shared_mime_info -, pkgconfig, gtk3, glib -, bash, makeWrapper, itstool, libxml2, dbus_glib -, gnome3, librsvg, gdk_pixbuf, file }: +, clutter_gtk, clutter-gst, python3Packages, shared_mime_info +, pkgconfig, gtk3, glib, gobjectIntrospection +, bash, wrapGAppsHook, itstool, libxml2, dbus_glib +, gnome3, librsvg, gdk_pixbuf, file, tracker, nautilus }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; @@ -18,22 +18,21 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig gtk3 glib intltool itstool libxml2 gnome3.grilo clutter_gtk clutter-gst gnome3.totem-pl-parser gnome3.grilo-plugins gst_all_1.gstreamer gst_all_1.gst-plugins-base - gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad - gnome3.libpeas pygobject3 shared_mime_info dbus_glib + gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad gst_all_1.gst-plugins-ugly gst_all_1.gst-libav + gnome3.libpeas shared_mime_info dbus_glib gdk_pixbuf gnome3.defaultIconTheme librsvg gnome3.gnome_desktop - gnome3.gsettings_desktop_schemas makeWrapper file ]; - - preFixup = '' - wrapProgram "$out/bin/totem" \ - --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" \ - --prefix GRL_PLUGIN_PATH : "${gnome3.grilo-plugins}/lib/grilo-0.2" \ - --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" - - ''; + gnome3.gsettings_desktop_schemas wrapGAppsHook file tracker nautilus ]; patches = [ ./x86.patch ]; + propagatedBuildInputs = [ gobjectIntrospection python3Packages.pylint python3Packages.pygobject ]; + + configureFlags = [ "--with-nautilusdir=$(out)/lib/nautilus/extensions-3.0" ]; + + GI_TYPELIB_PATH = "$out/lib/girepository-1.0"; + + wrapPrefixVariables = [ "PYTHONPATH" ]; + meta = with stdenv.lib; { homepage = https://wiki.gnome.org/Apps/Videos; description = "Movie player for the GNOME desktop based on GStreamer"; From a6be3de87245b28213ace6f4288aa11e090e927e Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Wed, 6 Jul 2016 11:14:36 +0200 Subject: [PATCH 74/79] grilo: 0.3.0 -> 0.3.1 --- pkgs/desktops/gnome-3/3.20/core/grilo/default.nix | 12 +++++++----- pkgs/desktops/gnome-3/3.20/core/grilo/setup-hook.sh | 4 ++-- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/grilo/default.nix b/pkgs/desktops/gnome-3/3.20/core/grilo/default.nix index e178985c178..0bae28387bb 100644 --- a/pkgs/desktops/gnome-3/3.20/core/grilo/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/grilo/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl, pkgconfig, file, intltool, glib -, libxml2, gnome3, gobjectIntrospection, libsoup }: +, libxml2, gnome3, gobjectIntrospection, libsoup, python3Packages }: stdenv.mkDerivation rec { - major = "0.3"; - minor = "0"; + major = "0.3"; # if you change this, also change ./setup-hook.sh + minor = "1"; name = "grilo-${major}.${minor}"; src = fetchurl { url = "mirror://gnome/sources/grilo/${major}/${name}.tar.xz"; - sha256 = "0q5wcvnckpfks48hy0gvlfdmvqm67vnblm3912rssmkgc1ysil8z"; + sha256 = "0k6d8drgh7inbpxqfa9m9dm4vrhfb9ifi5b88fn8q2ljqwfwdggb"; }; setupHook = ./setup-hook.sh; @@ -23,7 +23,9 @@ stdenv.mkDerivation rec { ''; buildInputs = [ pkgconfig file intltool glib libxml2 libsoup - gnome3.totem-pl-parser gobjectIntrospection ]; + gnome3.totem-pl-parser ]; + + propagatedBuildInputs = [ python3Packages.pygobject3 gobjectIntrospection ]; meta = with stdenv.lib; { homepage = https://wiki.gnome.org/action/show/Projects/Grilo; diff --git a/pkgs/desktops/gnome-3/3.20/core/grilo/setup-hook.sh b/pkgs/desktops/gnome-3/3.20/core/grilo/setup-hook.sh index bc93dddec38..3291e38addb 100644 --- a/pkgs/desktops/gnome-3/3.20/core/grilo/setup-hook.sh +++ b/pkgs/desktops/gnome-3/3.20/core/grilo/setup-hook.sh @@ -1,6 +1,6 @@ make_grilo_find_plugins() { - if [ -d "$1"/lib/grilo-0.2 ]; then - addToSearchPath GRL_PLUGIN_PATH "$1/lib/grilo-0.2" + if [ -d "$1"/lib/grilo-0.3 ]; then + addToSearchPath GRL_PLUGIN_PATH "$1/lib/grilo-0.3" fi } From c7a4e63f927002d39c0825bc0acd15bfc73bf260 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Wed, 6 Jul 2016 11:14:50 +0200 Subject: [PATCH 75/79] grilo-plugins: 0.3.1 -> 0.3.2 --- pkgs/desktops/gnome-3/3.20/core/grilo-plugins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/grilo-plugins/default.nix b/pkgs/desktops/gnome-3/3.20/core/grilo-plugins/default.nix index 4c952e3de27..caa0176036f 100644 --- a/pkgs/desktops/gnome-3/3.20/core/grilo-plugins/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/grilo-plugins/default.nix @@ -4,12 +4,12 @@ stdenv.mkDerivation rec { major = "0.3"; - minor = "1"; + minor = "2"; name = "grilo-plugins-${major}.${minor}"; src = fetchurl { url = "mirror://gnome/sources/grilo-plugins/${major}/${name}.tar.xz"; - sha256 = "1akd7q6pqnkcnayrdfjb0qx5w5yyl06kxzwhqp2gxm4y1b208pb0"; + sha256 = "1z8s62a29zidm35ajf708r7d36glb27im4s52l02q9w1jwl8j6vr"; }; installFlags = [ "GRL_PLUGINS_DIR=$(out)/lib/grilo-${major}" ]; From b090d58742e41fe2394d0ab9597a29eac01930c0 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Wed, 6 Jul 2016 11:15:11 +0200 Subject: [PATCH 76/79] libpeas: 1.16.0 -> 1.18.0 --- pkgs/desktops/gnome-3/3.20/core/libpeas/src.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/libpeas/src.nix b/pkgs/desktops/gnome-3/3.20/core/libpeas/src.nix index 8a24097bbd6..cd440858946 100644 --- a/pkgs/desktops/gnome-3/3.20/core/libpeas/src.nix +++ b/pkgs/desktops/gnome-3/3.20/core/libpeas/src.nix @@ -1,10 +1,13 @@ # Autogenerated by maintainers/scripts/gnome.sh update -fetchurl: { - name = "libpeas-1.16.0"; +fetchurl: rec { + major = "1.18"; + minor = "0"; + version = "${major}.${minor}"; + name = "libpeas-${version}"; src = fetchurl { - url = mirror://gnome/sources/libpeas/1.16/libpeas-1.16.0.tar.xz; - sha256 = "b093008ecd65f7d55c80517589509698ff15ad41f664b11a3eb88ff461b1454e"; + url = "mirror://gnome/sources/libpeas/${major}/${name}.tar.xz"; + sha256 = "09jy2rwwgp0xx7cnypxl56m7zzxnj3j4v58xqjxjasf3chn88jdz"; }; } From 0b5f4b3d443ebd3ff8d92f3728ae1f5c54c279d1 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Thu, 7 Jul 2016 13:50:02 +0200 Subject: [PATCH 77/79] libpeas: build with python support --- pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix b/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix index 8d40d977a80..1ba143539d4 100644 --- a/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix @@ -1,14 +1,13 @@ { stdenv, fetchurl, pkgconfig, intltool, gnome3 -, glib, gtk3, gobjectIntrospection, python, pygobject3 +, glib, gtk3, gobjectIntrospection, python3Packages, ncurses }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; - buildInputs = [ - intltool pkgconfig glib gtk3 gobjectIntrospection python pygobject3 - gnome3.defaultIconTheme - ]; + configureFlags = [ "--enable-python3" ]; + + buildInputs = [ intltool pkgconfig glib gtk3 gnome3.defaultIconTheme ncurses python3Packages.python python3Packages.pygobject3 gobjectIntrospection ]; meta = with stdenv.lib; { description = "A GObject-based plugins engine"; From 0044ba7256aae191b3a5bb3d4b4f28c3cf9a99c5 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 8 Jul 2016 17:36:39 +0200 Subject: [PATCH 78/79] kde5.libkomparediff2: init at 16.04.2 --- .../kde-5/applications-16.04/default.nix | 1 + .../applications-16.04/libkomparediff2.nix | 23 +++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/desktops/kde-5/applications-16.04/libkomparediff2.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/default.nix b/pkgs/desktops/kde-5/applications-16.04/default.nix index 7acf6593e05..9b5f710d41e 100644 --- a/pkgs/desktops/kde-5/applications-16.04/default.nix +++ b/pkgs/desktops/kde-5/applications-16.04/default.nix @@ -53,6 +53,7 @@ let libkdcraw = callPackage ./libkdcraw.nix {}; libkexiv2 = callPackage ./libkexiv2.nix {}; libkipi = callPackage ./libkipi.nix {}; + libkomparediff2 = callPackage ./libkomparediff2.nix {}; okular = callPackage ./okular.nix {}; print-manager = callPackage ./print-manager.nix {}; spectacle = callPackage ./spectacle.nix {}; diff --git a/pkgs/desktops/kde-5/applications-16.04/libkomparediff2.nix b/pkgs/desktops/kde-5/applications-16.04/libkomparediff2.nix new file mode 100644 index 00000000000..d6a4878ffbd --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/libkomparediff2.nix @@ -0,0 +1,23 @@ +{ kdeApp +, lib +, extra-cmake-modules +, ki18n +, kxmlgui +, kcodecs +, kio +}: + +kdeApp { + name = "libkomparediff2"; + + nativeBuildInputs = [ + extra-cmake-modules + ]; + + propagatedBuildInputs = [ + kcodecs + ki18n + kxmlgui + kio + ]; +} From a4f903156095068bdbc072cdfe306836b36f3056 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 8 Jul 2016 17:36:52 +0200 Subject: [PATCH 79/79] kde5.kompare: init at 16.04.2 --- .../kde-5/applications-16.04/default.nix | 1 + .../kde-5/applications-16.04/kompare.nix | 34 +++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/desktops/kde-5/applications-16.04/kompare.nix diff --git a/pkgs/desktops/kde-5/applications-16.04/default.nix b/pkgs/desktops/kde-5/applications-16.04/default.nix index 9b5f710d41e..d66285deb8b 100644 --- a/pkgs/desktops/kde-5/applications-16.04/default.nix +++ b/pkgs/desktops/kde-5/applications-16.04/default.nix @@ -49,6 +49,7 @@ let kgpg = callPackage ./kgpg.nix { inherit (pkgs.kde4) kdepimlibs; }; khelpcenter = callPackage ./khelpcenter.nix {}; kio-extras = callPackage ./kio-extras.nix {}; + kompare = callPackage ./kompare.nix {}; konsole = callPackage ./konsole.nix {}; libkdcraw = callPackage ./libkdcraw.nix {}; libkexiv2 = callPackage ./libkexiv2.nix {}; diff --git a/pkgs/desktops/kde-5/applications-16.04/kompare.nix b/pkgs/desktops/kde-5/applications-16.04/kompare.nix new file mode 100644 index 00000000000..55bbfc44860 --- /dev/null +++ b/pkgs/desktops/kde-5/applications-16.04/kompare.nix @@ -0,0 +1,34 @@ +{ kdeApp +, lib +, extra-cmake-modules +, kdoctools +, makeQtWrapper +, kparts +, ktexteditor +, kwidgetsaddons +, libkomparediff2 +}: + +kdeApp { + name = "kompare"; + meta = { + license = with lib.licenses; [ gpl2 ]; + }; + + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + + propagatedBuildInputs = [ + kparts + ktexteditor + kwidgetsaddons + libkomparediff2 + ]; + + postInstall = '' + wrapQtProgram "$out/bin/kompare" + ''; +}